aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: b58e558c8469e4e76b61dc88a4c5185f622026bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "shellshare"
version = "0.1.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"

[dependencies]
bytes = "0.4"
clap = "2"
crossterm = "0.11"
futures = "0.1"
mio = "0.6"
snafu = { version = "0.5", features = ["futures-01"] }
tokio = "0.1"
tokio-pty-process = "0.4"
tokio-signal = "0.2"
twoway = "0.2"
uuid = { version = "0.7", features = ["v4"] }

[[bin]]
name = "shsh"
path = "src/main.rs"