We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5269030 commit 3366c40Copy full SHA for 3366c40
Cargo.toml
@@ -4,13 +4,16 @@ resolver = "2"
4
5
[profile.dev]
6
opt-level = 1 # No optimizations are too slow for us.
7
+# https://kobzol.github.io/rust/rustc/2025/05/20/disable-debuginfo-to-improve-rust-compile-times.html
8
+debug = false
9
10
[profile.release]
11
lto = "thin"
12
# We use FFI so this is safest
13
panic = "abort"
14
# We assume we're being delivered via e.g. RPM which supports split debuginfo
-debug = true
15
+# debug = true
16
17
18
[profile.thin]
19
# drop bootc size when split debuginfo is not available and go a step
0 commit comments