summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 9bed95fd273d9ab9e8fd1c17830f58c4e2b57b07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "nbsh"
version = "0.1.0"
edition = "2021"

[dependencies]
anyhow = "1.0.45"
async-process = "1.2.0"
async-std = "1.10.0"
futures = "0.3.17"
libc = "0.2.107"
nix = "0.23.0"
pty-process = { version = "0.1.0", features = ["backend-async-std"] }
textmode = { version = "0.1.0", features = ["async"] }
vt100 = "0.12.0"

[features]