hboard/.cargo/config.toml

17 lines
246 B
TOML
Raw Permalink Normal View History

2024-09-04 05:28:08 +07:00
[profile.release-with-debug]
inherits = "release"
debug = true
[profile.min-size]
inherits = "release"
# gives 1mb
strip = true
# gives 0.3mb
lto = true
# gives 0.2mb
panic = "abort"
# gives 0.5mb
opt-level = "z"
# gives 0.1mb
codegen-units = 1