mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 13:38:43 +00:00
32 lines
571 B
TOML
32 lines
571 B
TOML
[workspace]
|
|
members = [
|
|
"crates/bin",
|
|
"crates/binstalk",
|
|
"crates/detect-wasi",
|
|
"crates/fs-lock",
|
|
"crates/normalize-path",
|
|
"crates/detect-targets",
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = "symbols"
|
|
|
|
[profile.dev.build-override]
|
|
opt-level = 0
|
|
codegen-units = 1024
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
incremental = false
|
|
|
|
[profile.release.build-override]
|
|
opt-level = 0
|
|
codegen-units = 1024
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
incremental = false
|