-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 955 Bytes
/
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
[package]
name = "something"
authors = ["[email protected]"]
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2"
criterion = "0.3"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
hex = "0.4"
lazy_static = "1.4"
snow = { version = "0.8.0", features = ["default-resolver"] }
tokio = { version = "1.0.0", features = ["full", "tracing"] }
tokio-util = { version = "0.6.3", features = ["full"] }
tokio-stream = { version = "0.1" }
tokio-io = "*"
tokio-net = "*"
tracing = "0.1"
tracing-subscriber = { version = "0.2.7", default-features = false, features = ["fmt", "ansi", "env-filter", "chrono", "tracing-log"] }
bytes = "1.1.0"
futures = { version = "0.3.0", features = ["thread-pool", ]}
http = "0.2"
httparse = "1.0"
time = "0.3.2"
once_cell = "1.5.2"
rand = "0.8.3"
anyhow = "1.0"
mio = "0.7.11"
fern = "0.6.0"
chrono = "0.4.19"
log = "*"