-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
43 lines (40 loc) · 1.28 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
[workspace]
resolver = "2"
members = [
"integration/sheepdog",
"integration/ducks",
"lading",
"lading_capture",
"lading_payload",
"lading_throttle",
]
[workspace.dependencies]
bytes = { version = "1.8", default-features = false, features = ["std"] }
byte-unit = { version = "4.0", features = ["serde"] }
metrics = { version = "0.23.0" }
metrics-util = { version = "0.17.0" }
metrics-exporter-prometheus = { version = "0.15.3", default-features = false, features = [
"http-listener",
"uds-listener",
] }
prost = "0.11"
rand = { version = "0.8", default-features = false }
rustc-hash = { version = "1.1" }
serde = { version = "1.0", features = ["std", "derive"] }
serde_json = { version = "1.0", features = ["std"] }
thiserror = { version = "1.0" }
tokio = { version = "1.41" }
tracing = { version = "0.1" }
uuid = { version = "1.11", default-features = false, features = [
"v4",
"serde",
] }
once_cell = { version = "1.20" }
hyper = { version = "0.14", default-features = false }
[profile.release]
lto = true # Optimize our binary at link stage.
codegen-units = 1 # Increases compile time but improves optmization alternatives.
opt-level = 3 # Optimize with 'all' optimization flipped on. May produce larger binaries than 's' or 'z'.
panic = "abort"
[profile.dev]
panic = "abort"