Link-Time Optimization (LTO) for smaller binary size resolves #2

This commit is contained in:
Abdenasser 2024-10-31 16:28:06 +01:00
parent d7cd3bf883
commit fc2cf29e49

View File

@ -18,3 +18,10 @@ users = "0.11"
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = "fat" # More aggressive link-time optimization
opt-level = 3 # Optimize for maximum performance
strip = true # Remove debug symbols