7 lines
197 B
TOML
7 lines
197 B
TOML
|
[profile.release]
|
||
|
strip = true # strip symbols from the binary
|
||
|
opt-level = "z" # optimize for size
|
||
|
lto = true # link time optimization
|
||
|
codegen-units = 1 # decrease parallelization
|
||
|
panic = "abort"
|