💾 Archived View for pixeldreams.tokyo › technomancy › smol-rust.gmi captured on 2024-03-21 at 15:02:42. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-09-08)

-=-=-=-=-=-=-

smol rust

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