11 lines
295 B
TOML
11 lines
295 B
TOML
[unstable]
|
|
build-std = [ "std", "panic_abort" ]
|
|
build-std-features = [ "panic_immediate_abort" ]
|
|
|
|
[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"
|