Skip to content

Commit

Permalink
feat: add link time optimization when building
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpasmantier committed Oct 4, 2024
1 parent c798863 commit eca33d4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grip-grab"
version = "0.5.3"
version = "0.5.4"
edition = "2021"
authors = ["Alexandre Pasmantier <alex.pasmant@gmail.com>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -30,3 +30,12 @@ termcolor = "1.4.1"
[[bin]]
name = "gg"
path = "src/main.rs"

[profile.release]
opt-level = 3
debug = "none"
strip = "symbols"
debug-assertions = false
overflow-checks = false
lto = "fat"
panic = "abort"

0 comments on commit eca33d4

Please sign in to comment.