From fcb896d38df763289cc681a4749b889c4eec9d25 Mon Sep 17 00:00:00 2001 From: Alexander Zaitsev Date: Mon, 25 Aug 2025 22:06:31 +0200 Subject: [PATCH] feat: enable FatLTO and codegen-units = 1 optimizations --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index d767148..357edbd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,7 @@ [workspace] members = ["crates/*"] resolver = "2" + +[profile.release] +codegen-units = 1 +lto = true