30 lines
673 B
TOML
30 lines
673 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"rust/fds-smoketest", "rust/dasungd", "rust/fds-common",
|
|
"rust/fds-cli", "rust/fds-stage0", "rust/fds-boottrace", "rust/fds-cartridged",
|
|
"rust/fds-burn",
|
|
"rust/fds-release",
|
|
"rust/fds-software",
|
|
"rust/fds-workstation",
|
|
"rust/fds-control",
|
|
"tests/helpers",
|
|
]
|
|
|
|
[workspace.package]
|
|
# Cargo requires three numeric components; public build versions come from Git.
|
|
version = "1.0.0"
|
|
|
|
[workspace.dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
|
|
[profile.release.package.fds-test-helpers]
|
|
opt-level = 2
|