From ef7845403e7ddbcda8827a32ec8724a9c23a095c Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Thu, 3 Sep 2026 13:55:48 -0700 Subject: [PATCH] chore(rust): use fat LTO for release builds --- litellm-rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm-rust/Cargo.toml b/litellm-rust/Cargo.toml index 643ad985251..9dba3fba177 100644 --- a/litellm-rust/Cargo.toml +++ b/litellm-rust/Cargo.toml @@ -38,7 +38,7 @@ base64 = "0.22" [profile.release] opt-level = 3 -lto = "thin" +lto = "fat" codegen-units = 1 panic = "unwind" debug = false