opt-level = 'z' for smaller binaries

https://doc.rust-lang.org/cargo/reference/manifest.html#the-profile-sections
> 'z' reduces size even more
This commit is contained in:
Damjan Georgievski 2019-01-18 00:10:06 +01:00
parent 33fde259d3
commit 072b427828

View file

@ -19,6 +19,6 @@ percent-encoding = "1.0"
htmlescape = "0.3"
[profile.release]
opt-level = 's'
opt-level = 'z'
lto = true
panic = 'abort'