aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 472bb2fddfaed7acdd3129d52806842a09feff3f (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
30
31
32
33
[package]
name = "textmode"
version = "0.2.2"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2021"

description = "terminal interaction library backed by a real terminal parser"
repository = "https://git.tozt.net/textmode"
readme = "README.md"
keywords = ["curses", "vt100", "terminal", "tui"]
categories = ["asynchronous", "command-line-interface"]
license = "MIT"

[dependencies]
itoa = "1.0.1"
nix = "0.23.0"
terminal_size = "0.1.17"
vt100 = "0.15.0"

blocking = { version = "1.1.0", optional = true }
futures-lite = { version = "1.12.0", optional = true }

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

[dev-dependencies]
assert_cmd = "2.0.2"
assert_fs = "1.0.6"
escargot = "0.5.7"
libc = "0.2.112"
pty-process = { version = "0.2.0", features = ["backend-smol"] }
smol = "1.2.5"