From 05464779019803c2566f8b3a0857c1cf1e4d68ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Fri, 17 Apr 2026 14:22:09 -0700 Subject: [PATCH] Allow collapsible-match Clippy lint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allow the collapsible-match Clippy lint (added in Rust 1.95), similar to what we already do for collapsible-if and collapsible-else-if. Signed-off-by: Daniel Müller --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index f391ff63..eacdc11e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,6 +33,7 @@ unused = "warn" [workspace.lints.clippy] collapsible-else-if = "allow" collapsible-if = "allow" +collapsible-match = "allow" fn-to-numeric-cast = "allow" let-and-return = "allow" let-unit-value = "allow"