breed/.cargo/config.toml

11 lines
297 B
TOML
Raw Normal View History

2023-04-12 22:46:19 +00:00
[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
2023-04-12 23:49:02 +00:00
# panic = "abort"