💾 Archived View for pixeldreams.tokyo › technomancy › smol-rust.gmi captured on 2023-11-14 at 08:06:25. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-09-08)
-=-=-=-=-=-=-
8 september, 2023
i like adding these lines to my Cargo.toml to make compiled rust binaries smaller
[profile.release] strip = true # automatically strip symbols opt-level = "z" # optimize for size lto = true # link-time optimization