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

[dependencies]
bytes = "0.4"
clap = "2"
config = "0.9"
crossterm = "0.11"
directories = "2"
env_logger = "0.7"
futures = "0.1"
lazy_static = "1"
log = { version = "0.4", features = ["release_max_level_info"] }
mio = "0.6"
native-tls = "0.2"
oauth2 = "3.0.0-alpha.3" # need the alpha for async support
open = "1"
rand = "0.7"
ratelimit_meter = "5"
regex = "1"
reqwest = "0.9"
serde = "1"
snafu = { version = "0.5", features = ["futures-01"] }
tokio = "0.1"
tokio-pty-process = "0.4"
tokio-signal = "0.2"
tokio-tls = "0.2"
twoway = "0.2"
url = "1"
uuid = { version = "0.7", features = ["v4"] }

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