reduce-exe-size

Published at 2024-01-15
Last update over 365 days ago Licensed under CC BY-NC-SA 4.0 langsrust
[profile.release]
opt-level = 'z'     # Optimize for size
lto = true          # Enable link-time optimization
codegen-units = 1   # Reduce number of codegen units to increase optimizations
panic = 'abort'     # Abort on panic
strip = true        # Strip symbols from binary*