summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c8732004aa82b9c8ef37e947b1a44ad84e4310dd (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
[package]
name = "nbsh"
version = "0.1.0"
edition = "2021"

license = "MIT"

[dependencies]
anyhow = "1.0.45"
async-std = { version = "1.10.0", features = ["unstable"] }
chrono = "0.4.19"
futures-lite = "1.12.0"
hostname = "0.3.1"
libc = "0.2.107"
nix = "0.23.0"
pty-process = { path = "../pty-process", version = "0.1.1", features = ["backend-async-std"] }
signal-hook = "0.3.10"
signal-hook-async-std = "0.2.1"
terminal_size = "0.1.17"
textmode = { path = "../textmode", version = "0.1.1", features = ["async"] }
unicode-width = "0.1.9"
users = "0.11.0"
vt100 = { path = "../vt100-rust", version = "0.12.0" }

[features]