aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm/Cargo.toml
blob: f78eabee572e131f743bfaad88ae9eba75f9c12b (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "teleterm"
version = "0.2.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"

description = "share your terminals!"
repository = "https://git.tozt.net/teleterm"
readme = "README.md"
keywords = ["terminal", "streaming"]
categories = ["command-line-utilities"]
license = "MIT"

[dependencies]
base64 = "0.11"
bytes = "0.4"
clap = { version = "2", features = ["wrap_help"] }
component-future = "0.1"
config = { version = "0.9", features = ["toml"], default_features = false }
crossterm = "0.13"
directories = "2"
env_logger = "0.7"
futures = "0.1.29"
# for websocket support - should be able to go back to released version in 0.5
gotham = { git = "https://github.com/gotham-rs/gotham", rev = "d2395926b93710832f8d72b49c9bd3e77516e386" }
gotham_derive = "0.4"
handlebars = "2"
hyper = "0.12"
lazy_static = "1"
lazy-static-include = "2"
log = { version = "0.4", features = ["release_max_level_info"] }
mio = "0.6.19"
native-tls = "0.2"
oauth2 = "3.0.0-alpha.4" # need the alpha for async support
open = "1.1"
rand = "0.7"
ratelimit_meter = "5"
regex = "1"
reqwest = "0.9.22"
serde = "1"
serde_json = "1"
sha1 = "0.6"
snafu = { version = "0.5", features = ["futures-01"] }
tokio = "0.1.22"
tokio-pty-process-stream = "0.2"
tokio-terminal-resize = "0.1"
tokio-tls = "0.2"
tokio-tungstenite = "0.9"
ttyrec = "0.2"
url = "2"
users = "0.9"
uuid = { version = "0.8", features = ["v4"] }
vt100 = "0.7"

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

[package.metadata.deb]
depends = "openssl"