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:
parent
385f7758bb
commit
d1b9a19d68
1 changed files with 1 additions and 0 deletions
|
|
@ -86,6 +86,7 @@ opt-level = 2
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = "thin"
|
lto = "thin"
|
||||||
|
strip = "symbols"
|
||||||
|
|
||||||
[profile.dev.package.bitvec]
|
[profile.dev.package.bitvec]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue