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

[dependencies]
itoa = "0.4"
nix = "0.20"
terminal_size = "0.1"
thiserror = "1.0"
vt100 = "0.12"

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

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

[dev-dependencies]
assert_cmd = "1.0"
assert_fs = "1.0"
escargot = "0.5"
libc = "0.2"
pty-process = { version = "0.1", features = ["backend-smol"] }
smol = "1.2"