aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ae8f3d3faedc9ddccd53e4eb1c4ca8f40d8b25d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "vt100"
version = "0.15.2"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2021"

description = "Library for parsing terminal data"
homepage = "https://github.com/doy/vt100-rust"
repository = "https://github.com/doy/vt100-rust"
readme = "README.md"
keywords = ["terminal", "vt100"]
categories = ["command-line-interface", "encoding"]
license = "MIT"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]

[dependencies]
itoa = "1.0.5"
log = "0.4.17"
unicode-width = "0.1.10"
vte = "0.11.0"

[dev-dependencies]
nix = "0.26.2"
quickcheck = "0.9"
rand = "0.7"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.92"
terminal_size = "0.2.3"
vte = "0.11.0"