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

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 = "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"