3 releases

0.1.2 Jun 8, 2024
0.1.1 Jan 12, 2020
0.1.0 Dec 10, 2019

#1183 in Parser implementations

Download history 109948/week @ 2024-07-02 113716/week @ 2024-07-09 111802/week @ 2024-07-16 113646/week @ 2024-07-23 114213/week @ 2024-07-30 109676/week @ 2024-08-06 112982/week @ 2024-08-13 115609/week @ 2024-08-20 130539/week @ 2024-08-27 133773/week @ 2024-09-03 127697/week @ 2024-09-10 125487/week @ 2024-09-17 142959/week @ 2024-09-24 147056/week @ 2024-10-01 127305/week @ 2024-10-08 117369/week @ 2024-10-15

558,729 downloads per month
Used in 834 crates (3 directly)

Apache-2.0 OR MIT

8KB
102 lines

vte

Build Status Crates.io Version

Parser for implementing virtual terminal emulators in Rust.

The parser is implemented according to Paul Williams' ANSI parser state machine. The state machine doesn't assign meaning to the parsed data and is thus not itself sufficient for writing a terminal emulator. Instead, it is expected that an implementation of the Perform trait which does something useful with the parsed data. The Parser handles the book keeping, and the Perform gets to simply handle actions.

See the docs for more info.

Dependencies

~78KB