From 210e6c354e22ba348b3a26c5e3ffe7978db2b306 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 30 Apr 2022 21:35:00 -0700 Subject: [PATCH] Clean up clippy allows which are superseded by msrv in clippy.toml --- serde/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index a75345d5..7f1436c6 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -103,10 +103,7 @@ // clippy bug: https://github.com/rust-lang/rust-clippy/issues/7768 semicolon_if_nothing_returned, // not available in our oldest supported compiler - checked_conversions, empty_enum, - redundant_field_names, - redundant_static_lifetimes, type_repetition_in_bounds, // https://github.com/rust-lang/rust-clippy/issues/8772 // integer and float ser/de requires these sorts of casts cast_possible_truncation,