Skip to content

Commit 53caf08

Browse files
committed
allow clippy::explicit_auto_deref due to a bug in clippy
see rust-lang/rust-clippy#9101
1 parent 4037177 commit 53caf08

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#![warn(clippy::match_same_arms)]
22
#![warn(clippy::semicolon_if_nothing_returned)]
33
#![warn(clippy::unnecessary_wraps)]
4+
#![allow(clippy::explicit_auto_deref)] // TODO: remove once https://github.com/rust-lang/rust-clippy/issues/9101 is resloved
45

56
#[macro_use]
67
mod util;

0 commit comments

Comments
 (0)