Use strip Cargo profile option

This option was stabilized in Rust 1.59. Our MSRV is greater than that,
so we can use it instead of manual `strip` invocations.
This commit is contained in:
Alejandro González 2023-07-10 22:41:31 +02:00 committed by Josh Holmer
parent 385f7758bb
commit d1b9a19d68

View file

@ -86,6 +86,7 @@ opt-level = 2
[profile.release]
lto = "thin"
strip = "symbols"
[profile.dev.package.bitvec]
opt-level = 3