From f59283cbb8066676f678bb5b46b3768908e2d842 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 6f7fe1c0f..93f37c470 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