From 02cb884eb7a086805a2ce63ff5c6688b6cb4aadc Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 4 Mar 2026 07:47:34 +0000 Subject: [PATCH] Set opt-level=1 for CI profile This enables basic optimizations in CI builds, which can help catch optimization-related issues while keeping compile times reasonable. https://claude.ai/code/session_01Hsk2vL1XcCKoHbxCqS5LsY --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 3bcf17d8ed657..ff2b39514a130 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -265,6 +265,7 @@ strip = false # Retain debug info for flamegraphs debug = false inherits = "dev" incremental = false +opt-level = 1 # This rule applies to every package except workspace members (dependencies # such as `arrow` and `tokio`). It disables debug info and related features on