aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 36b246c3a81c8aace30cc800501bc4009083d2f3 (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
[package]
name = "vt100"
version = "0.12.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"

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"

[dependencies]
itoa = "0.4.8"
log = "0.4.14"
unicode-width = "0.1.9"
vte = "0.10.1"

[dev-dependencies]
quickcheck = "0.9"
rand = "0.7"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.69"