@Doods are you using `release` ? If you want the best dead-code elimination, you can also enable Link time optimisations (LTO): https://doc.rust-lang.org/cargo/reference/profiles.html#lto
Yes, I am using both LTO and release mode, I can show you:
[profile.release] opt-level = 3 codegen-units = 1 panic = "abort" strip = true lto = true
cargo build --release
@Doods I'm surprised you can gain that much with that already enabled!
Should I bring it up to ‘min-sized-rust’ working group or the forums or something?