We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6057cce commit 07859cbCopy full SHA for 07859cb
.cargo/config
@@ -0,0 +1 @@
1
+rustflags = "-C target-cpu=native"
Cargo.toml
@@ -18,7 +18,10 @@ anyhow = "1.0.31"
18
structopt = "0.3.14"
19
20
[profile.release]
21
-panic = 'unwind'
+overflow-checks = false
22
+lto = "fat"
23
+panic = 'abort'
24
+codegen-units = 1
25
incremental = false
26
27
[workspace]
demos/Cargo.toml
@@ -15,3 +15,11 @@ test = false
15
git-odb = { version = "0.1.0", path = "../gitoxide-odb" }
16
rayon = "1.3.0"
17
anyhow = "1.0.31"
+
+[profile.release]
+incremental = false
0 commit comments