-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 684 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[workspace]
members = ["tools/*"]
resolver = "2"
[workspace.package]
edition = "2021"
[workspace.dependencies]
clap = { version = "4.5.42", features = ["derive"] }
rand = "0.8.5"
rstest = "0.23.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_with = "3.11.0"
serde_yaml = "0.9.34+deprecated"
snafu = "0.8.5"
strum = { version = "0.26.3", features = ["derive"] }
tracing = "0.1.41"
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.