From fb4c90931f3f58d1a9f363e536abefe418134f29 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 21 May 2025 22:43:47 +0000 Subject: [PATCH] Mitigate clippy::collapsible-if nightly vs stable. Signed-off-by: Jason Volk --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 31d399b0..cab9e916 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -980,6 +980,7 @@ style = { level = "warn", priority = -1 } assertions_on_constants = { level = "allow", priority = 1 } module_inception = { level = "allow", priority = 1 } obfuscated_if_else = { level = "allow", priority = 1 } +collapsible_if = { level = "allow", priority = 1 } # TODO stable v. nightly 05-21-25 ################### suspicious = { level = "warn", priority = -1 }