aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ce8f9af18138341aa8184e13be3faced266ebb9e (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.9"
log = "0.4.19"
unicode-width = "0.1.10"
vte = "0.11.1"

[dev-dependencies]
nix = "0.26.2"
quickcheck = "1.0"
rand = "0.8"
serde = { version = "1.0.182", features = ["derive"] }
serde_json = "1.0.104"
terminal_size = "0.2.6"
vte = "0.11.1"