2 releases

0.1.1 Jan 12, 2020
0.1.0 Dec 10, 2019

#1791 in Parser implementations

Download history 80952/week @ 2023-11-19 92089/week @ 2023-11-26 89644/week @ 2023-12-03 89251/week @ 2023-12-10 78019/week @ 2023-12-17 48328/week @ 2023-12-24 75120/week @ 2023-12-31 91385/week @ 2024-01-07 106482/week @ 2024-01-14 111847/week @ 2024-01-21 113169/week @ 2024-01-28 119395/week @ 2024-02-04 112773/week @ 2024-02-11 97402/week @ 2024-02-18 93996/week @ 2024-02-25 97184/week @ 2024-03-03

409,876 downloads per month
Used in 602 crates (2 directly)

Apache-2.0 OR MIT

7KB
101 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

~87KB