Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Optimized release output.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrueger committed Mar 26, 2024
1 parent 4d0c5a9 commit 663fa63
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ wasm_thread = { version = "0.2.0", features = ["es_modules"]}
winres = "0.1"

[profile.release]
strip = "symbols"
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*

[package.metadata.bundle]
name = "Icy Term"
Expand Down

0 comments on commit 663fa63

Please sign in to comment.