From 3a1f5015cb613f23fa5ae9f52670f2fcdc534576 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Tue, 11 Nov 2025 19:30:41 -0800 Subject: [PATCH] lto = "thin", opt-level = "z" --- bindings/python/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 9d4e94ab5c..1beabf37f1 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -41,5 +41,6 @@ tokio = { version = "1.46.1", default-features = false } [profile.release] codegen-units = 1 debug = false -lto = "fat" +lto = "thin" +opt-level = "z" strip = true