Compare commits

...

2 commits

Author SHA1 Message Date
Ericson "Fogo" Soares 09f3dcee92
Merge d89db9eff0 into e1ec45bf5e 2024-06-27 20:02:51 +00:00
Ericson Soares d89db9eff0 Re-enable unwind on release profile 2024-06-27 17:02:46 -03:00

View file

@ -143,7 +143,7 @@ incremental = false
# Optimize release builds
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
panic = "unwind" # Sadly we need unwind to avoid unexpected crashes on third party crates
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size