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] https://github.com/rust-lang/cargo/pull/13257

Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com>
This commit is contained in:
Thomas Bertschinger 2024-05-04 16:18:44 -04:00
parent b560d96cdf
commit ba0c99ecd9

View File

@ -27,3 +27,6 @@ gimli = "0.29.0"
object = "0.35.0"
memmap2 = "0.9.4"
nom = "7.1.3"
[profile.release]
strip = "none"