Skip to content

Commit eca33d4

Browse files
feat: add link time optimization when building
1 parent c798863 commit eca33d4

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Cargo.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grip-grab"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2021"
55
authors = ["Alexandre Pasmantier <alex.pasmant@gmail.com>"]
66
license = "Apache-2.0"
@@ -30,3 +30,12 @@ termcolor = "1.4.1"
3030
[[bin]]
3131
name = "gg"
3232
path = "src/main.rs"
33+
34+
[profile.release]
35+
opt-level = 3
36+
debug = "none"
37+
strip = "symbols"
38+
debug-assertions = false
39+
overflow-checks = false
40+
lto = "fat"
41+
panic = "abort"

0 commit comments

Comments
 (0)