swordfish/Cargo.toml

27 lines
466 B
TOML
Raw Permalink Normal View History

2023-12-30 14:39:44 +00:00
[workspace]
resolver = "1"
members = [
"swordfish-common",
"swordfish"
, "swordfish-user"]
default-members = ["swordfish"]
[profile.release]
opt-level = 3
debug = false
split-debuginfo = '...' # Platform-specific.
strip = "symbols"
debug-assertions = false
overflow-checks = false
lto = "thin"
panic = 'unwind'
incremental = false
codegen-units = 16
rpath = false
[profile.release-debug]
inherits = "release"
debug = true
incremental = true
strip = false