-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
36 lines (33 loc) · 821 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 = "rsnova"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "rsnova"
path = "src/main.rs"
[dependencies]
clap = { version = "4.1.4", features = ["derive", "env"] }
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-appender = "0.2"
veil = "0.1"
tokio = { version = "1.0", features = ["full"] }
quinn = "0.10"
rcgen = "0.11"
rustls = "0.21"
rustls-pemfile = "1.0.2"
rustls-native-certs = "0.6.1"
anyhow = "1.0"
url = "2.5.0"
bincode = "2.0.0-rc.3"
# yamux = "0.13.1"
tokio-rustls = "0.23.4"
tokio-util = { version = "0.7", features = ["compat"] }
pki-types = { package = "rustls-pki-types", version = "1" }
httparse = "1.8.0"
bytes = "1"
futures = "0.3"
metrics = "0.21"
metrics-util = "0.15"
time = "0.3"