forked from mars/breed
1
0
Fork 0
breed/.cargo/config.toml

11 lines
295 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
panic = "abort"