diff --git a/serde/src/lib.rs b/serde/src/lib.rs index 03b4fabc..4a79a073 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -106,7 +106,12 @@ // // https://github.com/serde-rs/serde/issues/812 #![cfg_attr(feature = "unstable", feature(never_type))] -#![allow(unknown_lints, bare_trait_objects, deprecated, mismatched_lifetime_syntaxes)] +#![allow( + unknown_lints, + bare_trait_objects, + deprecated, + mismatched_lifetime_syntaxes +)] // Ignored clippy and clippy_pedantic lints #![allow( // clippy bug: https://github.com/rust-lang/rust-clippy/issues/5704