From 0534f809e199e6cc7891e07143e9bc27f644b418 Mon Sep 17 00:00:00 2001 From: Jonas Bushart Date: Sun, 3 Jul 2022 01:25:18 +0200 Subject: [PATCH] Suppress issue with `clippy::explicit_auto_deref` https://github.com/rust-lang/rust-clippy/issues/9101 --- serde_with/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/serde_with/src/lib.rs b/serde_with/src/lib.rs index 065c3a4e..cf6350c7 100644 --- a/serde_with/src/lib.rs +++ b/serde_with/src/lib.rs @@ -32,6 +32,8 @@ clippy::only_used_in_recursion, // https://github.com/rust-lang/rust-clippy/issues/8867 clippy::derive_partial_eq_without_eq, + // https://github.com/rust-lang/rust-clippy/issues/9101 + clippy::explicit_auto_deref )] #![no_std]