From 6a9fd0999c23d6af0819427c25290586af76a78c Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Wed, 17 Dec 2025 16:45:51 -0700 Subject: [PATCH] build: Added additional compile-time optimizations for speed improvements and a smaller binary --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d39823f..8f4aea4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,4 +91,6 @@ name = "managarr" [profile.release] lto = true -codegen-units = 1 +codegen-units = 3 +opt-level = "s" +strip = true