mirror of
https://github.com/euzu/tuliprox.git
synced 2026-09-25 10:32:15 +02:00
12 lines
327 B
TOML
12 lines
327 B
TOML
[workspace]
|
|
members = ["backend", "frontend", "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
|