From 70865e580e88c16226d1d6852961013bf9874496 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Fri, 22 May 2026 01:02:45 +0200 Subject: [PATCH 1/2] build: Reduce cgu count for test scenarios from 256 to 32 --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 854f3a2e..fac11e13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,3 +87,6 @@ debug = 1 [profile.dev.package.sqlx-macros] opt-level = 3 + +[profile.test] +codegen-units = 32 From ea981c101d1a231383d03735b3c17af1e9f12b93 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Sun, 24 May 2026 01:42:04 +0200 Subject: [PATCH 2/2] Cut down on debug info as well --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index fac11e13..5f94eac9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,3 +90,4 @@ opt-level = 3 [profile.test] codegen-units = 32 +debug = "limited" \ No newline at end of file