From 6a295b41b1db8ff4e69e760ff3663ebe639768e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Mockers?= Date: Fri, 23 Jan 2026 04:48:00 +0100 Subject: [PATCH] disable crate compile times --- src/bin/collect.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/collect.rs b/src/bin/collect.rs index 08d0768c7..5feaa3d84 100644 --- a/src/bin/collect.rs +++ b/src/bin/collect.rs @@ -290,6 +290,7 @@ impl Commands { if recur { Commands::iter() .filter(|c| !matches!(c, Commands::LlvmLines)) + .filter(|c| !matches!(c, Commands::CrateCompileTime)) .flat_map(|command| command.to_metrics(false)) .collect() } else {