We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b626af7 commit 7f1b063Copy full SHA for 7f1b063
Cargo.toml
@@ -14,16 +14,14 @@ resolver = "2"
14
members = ["cli", "tools/build-from-source"]
15
16
[profile.release]
17
+codegen-units = 1 # Reduce number of codegen units to increase optimizations
18
opt-level = 3
-lto = "fat"
19
-debug = false
20
-strip = true
+panic = "abort" # Abort on panic
21
22
-[profile.relwithdebinfo]
+# The profile that 'dist' will build with
+[profile.dist]
23
inherits = "release"
24
lto = "thin"
25
-debug = true
26
-strip = false
27
28
[workspace.dependencies]
29
0 commit comments