From 6f27a78711e55384afe0273c862971089f79c6b3 Mon Sep 17 00:00:00 2001 From: tehforsch Date: Sun, 25 Feb 2024 15:02:25 +0100 Subject: [PATCH] remove allow attrs that were needed due to a previous clippy bug --- src/lib.rs | 2 -- tests/mod.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 4c190dc..67c22db 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -396,8 +396,6 @@ #![cfg_attr(not(feature = "std"), no_std)] #![allow(incomplete_features)] #![feature(generic_const_exprs, adt_const_params)] -// clippy bug: https://github.com/rust-lang/rust-clippy/issues/12133 -#![allow(clippy::unconditional_recursion)] // This ensures we don't have to differentiate between // imports via `crate::` and `diman::` in the proc macro. diff --git a/tests/mod.rs b/tests/mod.rs index a9442e7..603527d 100644 --- a/tests/mod.rs +++ b/tests/mod.rs @@ -1,8 +1,6 @@ #![allow(incomplete_features)] #![feature(generic_const_exprs, adt_const_params)] #![feature(const_fn_floating_point_arithmetic)] -// clippy bug: https://github.com/rust-lang/rust-clippy/issues/12133 -#![allow(clippy::unconditional_recursion)] pub mod example_system; pub mod utils;