From 9dadfd3e5e83e71b5a14d5dd113c87eb1192eaf8 Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Fri, 25 Feb 2022 09:57:53 +0100 Subject: [PATCH] Stripping symbols by default for release Signed-off-by: Louis Vallat --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 5662ca3..e80a012 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,3 +16,6 @@ sha1 = { version = "0.6", features = ["std"] } openssl = "0.10.38" walkdir = "2.3.2" publicsuffix = "1.3.1" + +[profile.release] +strip = true