From c2a8d4054f6654b3da09c2b157c3e2f83d5ef5ce Mon Sep 17 00:00:00 2001 From: comphead Date: Fri, 13 Dec 2024 17:33:21 -0800 Subject: [PATCH] CI: Windows compilation time --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index fb64aa6b094f..29e2f06dce75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -177,6 +177,11 @@ lto = true opt-level = 1 incremental = false +[profile.release-windows.build-override] +opt-level = 0 +codegen-units = 256 +debug = false + [workspace.lints.clippy] # Detects large stack-allocated futures that may cause stack overflow crashes (see threshold in clippy.toml) large_futures = "warn"