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

[dependencies]
itoa = "0.4"
terminal_size = "0.1"
vt100 = "0.11"

blocking = { version = "1.0", optional = true }
futures-lite = { version = "1.11", optional = true }

[features]
default = []
async = ["blocking", "futures-lite"]

[dev-dependencies]
libc = "0.2"
nix = "0.20"
pty-process = { version = "0.1", features = ["backend-smol"] }
smol = "1.2"