Opt-level = "2s"
⚓ Rust 📅 2025-11-15 👤 surdeus 👁️ 6Its already possible all they would need to do is add an attribute to opt-level:
[profile.release]
opt-level = 2
codegen-units = 1
lto = "thin"
strip = "debuginfo"
# Disable the biggest binary bloat offenders:
debug = false
incremental = false
1 post - 1 participant
🏷️ Rust_feed