mirror of
https://github.com/euzu/tuliprox.git
synced 2026-09-23 01:22:09 +02:00
13 lines
316 B
TOML
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
|
|
|