create optimized production build

fix nightly build
This commit is contained in:
2022-12-08 14:22:37 +01:00
parent 536d355462
commit 36523a1203
2 changed files with 13 additions and 3 deletions

View File

@ -12,3 +12,10 @@ rust-embed = "6.4.2"
[features]
static = []
[profile.release]
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 # Strip symbols from binary*