-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.26 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
[package]
name = "nlx-gateway"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
opt-level = 3
#debug = true
[dependencies]
h2 = "0.3.15"
pem = "1.1.0"
http = "0.2.8"
log = "0.4.17"
bytes = "1.2.1"
prost = "0.11.0"
rustls = "0.20.7"
anyhow = "1.0.65"
wyhash2 = "0.2.1"
hostname = "0.3.1"
itertools = "0.10.5"
x509-parser = "0.14.0"
prost-types = "0.11.1"
futures-util = "0.3.25"
async-channel = "1.7.1"
pretty_env_logger = "0.4.0"
tokio = { version = "1.21.2", features = ["rt", "sync", "rt-multi-thread"] }
serde = { version = "1.0.145", features = ["derive"] }
tonic = { version = "0.8.2", features = ["tls", "gzip"] }
clap = { version = "4.0.17", features = ["derive", "env"] }
tokio-util = { version = "0.7.4", default-features = false, features = ["compat"] }
warp = { version = "0.3.3", features = ["tls"] }
backoff = { version = "0.4.0", features = ["futures", "tokio"] }
hyper = { version = "0.14.20", features = ["full"] }
hyper-rustls = { version = "0.23.0", features = ["http2"] }
[build-dependencies]
tonic-build = "0.8.2"
#[patch.crates-io]
#hyper = { path = "/Users/dmeijboom/DevProjects/github/hyper" }
#h2 = { path = "/Users/dmeijboom/DevProjects/github/h2" }