Skip to content

Commit 62ed2ce

Browse files
committed
include debuginfo in bcachefs binary by default
The debuginfo is used by the "bcachefs debug" and "bcachefs list_bkeys" commands. Rust 1.77 [1] changed Cargo's release profile to strip debuginfo by default, but we always want it included. [1] rust-lang/cargo#13257 Signed-off-by: Thomas Bertschinger <[email protected]>
1 parent cafd222 commit 62ed2ce

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ byteorder = "1.3"
2626
strum = { version = "0.26", features = ["derive"] }
2727
strum_macros = "0.26"
2828
zeroize = { version = "1", features = ["std", "zeroize_derive"] }
29+
30+
[profile.release]
31+
strip = "none"

0 commit comments

Comments
 (0)