From 62b181153e7b7ed9213419e2c763623563e1f66c Mon Sep 17 00:00:00 2001 From: dfunkt Date: Sun, 30 Jun 2024 17:05:30 +0300 Subject: [PATCH] Remove no longer needed Clippy lint - the issue with the lint has been fixed since Rust 1.78.0 --- Cargo.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9094801b..3fbcc8c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -221,11 +221,6 @@ unused_lifetimes = "deny" deprecated_in_future = "deny" [lints.clippy] -# Allow -# We need this since Rust v1.76+, since it has some bugs -# https://github.com/rust-lang/rust-clippy/issues/12016 -blocks_in_conditions = "allow" - # Deny cast_lossless = "deny" clone_on_ref_ptr = "deny"