-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (59 loc) · 1.36 KB
/
Cargo.toml
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
61
62
63
64
65
[package]
name = "webchannel"
version = "0.1.0"
authors = ["Greg Dallavalle <[email protected]>"]
edition = "2018"
license = "MIT"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
[lib]
name = "webchannel"
path = "src/lib.rs"
[[bin]]
name = "webchannel"
path = "src/bin/webchannel.rs"
test = false
doc = false
[[test]]
name = "integration"
path = "tests/tests.rs"
[dependencies]
anyhow = "1"
async-trait = "0.1"
base64 = "0.13"
biscuit = "0.6.0-beta1"
bytes = "1"
chrono = "0.4"
clap = "3.0.0-beta.2"
config = { version = "0.11", features = ["toml"] }
deadpool = { version = "0.8", features = ["managed"] }
futures = "0.3"
futures-util = "0.3"
http-api-problem = { version = "0.50", features = ["warp"] }
lazy_static = "1"
mimalloc = { version = "*", default-features = false }
mime = "0.3"
nanoid = "0.4"
parking_lot = "*"
prometheus = { version = "0.12", features = ["process"] }
redis-async = "0.11"
serde_json = "1"
serde = { version = "1", features = ["derive"] }
smallvec = "*"
thiserror = "1"
tokio-core = "0.1"
tokio-serde-json = "0.3"
tokio-util = { version = "0.6", features = ["codec"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-log = "*"
tracing-subscriber = "0.2"
warp = "0.3"
[dev-dependencies]
http = "*"
reqwest = { version = "*", features = ["json", "blocking"] }
tokio-test = "*"
tungstenite = "0.13"