From 3d18873c89310cff8a5b6290ed9f2d84fa1aa2ec Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Wed, 17 Dec 2025 22:00:38 -0300 Subject: [PATCH] CI profile: disable LTO, 16 codegen units for max speed --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6f7fe1c0..93f37c47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -268,5 +268,6 @@ overflow-checks = true [profile.ci] inherits = "release" -lto = "thin" -codegen-units = 4 +lto = false +codegen-units = 16 +debug = false