25 lines
530 B
TOML
25 lines
530 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",
|
|
"tests/helpers",
|
|
]
|
|
|
|
[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
|