-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (60 loc) · 1.55 KB
/
Cargo.toml
File metadata and controls
66 lines (60 loc) · 1.55 KB
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
66
[package]
name = "ic-http-lb"
version = "0.1.0"
edition = "2024"
[features]
default = []
sev-snp = ["ic-bn-lib/sev-snp"]
[dependencies]
anyhow = "1.0.98"
arc-swap = "1.7.1"
async-trait = "0.1.83"
axum = { version = "0.8.1", features = ["macros"] }
axum-extra = "0.10.0"
bytes = "1.11.1"
clap = { version = "4.5.20", features = ["derive", "string", "env"] }
derive-new = "0.7.0"
fqdn = { version = "0.5.2", features = ["serde"] }
hostname = "0.4.0"
http = "1.3.1"
http-body-util = "0.1.3"
humantime = "2.2.0"
ic-bn-lib = { version = "0.1", features = [
"acme-alpn",
"cert-providers",
"clients-hyper",
"vector",
] }
ic-bn-lib-common = "0.1"
ic-custom-domains-backend = "0.1"
ic-custom-domains-base = "0.1"
itertools = "0.14.0"
prometheus = "0.14.0"
serde = "1.0"
serde_yaml_ng = "0.10"
serde_json = "1.0.140"
tikv-jemallocator = "0.6.0"
tikv-jemalloc-ctl = { version = "0.6.0", features = ["stats"] }
tokio = { version = "1.47.1", features = ["full"] }
tokio-util = { version = "0.7.12", features = ["full"] }
time = { version = "0.3.36", features = ["macros", "serde"] }
tower = { version = "0.5.1", features = ["limit"] }
tower-http = { version = "0.6.1", features = ["cors", "compression-full"] }
tracing = "0.1.40"
tracing-core = "0.1.32"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"fmt",
"json",
] }
url = { version = "2.5.3", features = ["serde"] }
[dev-dependencies]
tempfile = "3"
[profile.release]
strip = "symbols"
codegen-units = 1
lto = "fat"
panic = "abort"
[profile.profiling]
inherits = "release"
debug = true