~autumnull/flatiron

bf86390ed137eed94339f3c0446328b0970ac192 — Autumn! 2 years ago e6d324c
Added min-sized-rust modifications to release config
1 files changed, 3 insertions(+), 0 deletions(-)

M Cargo.toml
M Cargo.toml => Cargo.toml +3 -0
@@ 5,7 5,10 @@ edition = "2021"

[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

[dependencies]
nom = "7.1"