Files
tuliprox/Cargo.toml
T
2025-06-19 12:45:55 +02:00

13 lines
316 B
TOML

[workspace]
members = ["backend", "shared"]
resolver = "2"
[profile.release]
debug = false
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