From d1b9a19d68cf0dd63afea1decc6bc3225df622ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= Date: Mon, 10 Jul 2023 22:41:31 +0200 Subject: [PATCH] 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. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index acca5133..be018b5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -86,6 +86,7 @@ opt-level = 2 [profile.release] lto = "thin" +strip = "symbols" [profile.dev.package.bitvec] opt-level = 3