From 9adfd813e647c0f5a00a560b985aba2992f3a23a Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 9 Jun 2026 10:25:37 +0900 Subject: [PATCH] Cargo.toml: enable lto --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 49f596a..610d064 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,3 +13,7 @@ sqlite3_ext = { version = "0.2.1" } default = [ ] # default = [ "static" ] static = ["sqlite3_ext/static", "sqlite3_ext/static_modern"] + +[profile.release] +strip = "debuginfo" +lto = true