From 491799894a0dae3a903b94fbad870dbde8840794 Mon Sep 17 00:00:00 2001 From: Alex Butler Date: Fri, 10 Nov 2023 10:44:50 +0000 Subject: [PATCH] Use thin lto and strip release binaries (#56) --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 377101b..9fa92ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,3 +41,7 @@ url = { version = "2.2", features = ["serde"] } urlencoding = "2.1" ustr = "0.10" uuid = { version = "1.1", features = ["v4"] } + +[profile.release] +lto = "thin" +strip = true -- libgit2 1.7.2