Skip to content

Commit 20382f1

Browse files
committed
Add #![allow(clippy::explicit_auto_deref)] due to false positives
rust-lang/rust-clippy#9101
1 parent ce37c47 commit 20382f1

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

hydroflow/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#![allow(type_alias_bounds)]
55
#![allow(clippy::let_and_return)]
66
#![allow(clippy::iter_with_drain)]
7+
#![allow(clippy::explicit_auto_deref)]
78

89
pub mod builder;
910
pub mod compiled;

hydroflow_core/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![feature(proc_macro_diagnostic, proc_macro_span)]
2+
#![allow(clippy::explicit_auto_deref)]
23

34
pub mod graph;
45
pub mod parse;

hydroflow_macro/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![feature(proc_macro_diagnostic, proc_macro_span)]
2+
#![allow(clippy::explicit_auto_deref)]
23

34
use proc_macro2::{Literal, Span};
45
use quote::quote;

relalg/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![allow(dead_code)]
22
#![allow(clippy::iter_with_drain)]
3+
#![allow(clippy::explicit_auto_deref)]
34

45
use anyhow::bail;
56
use sexp::Sexp;

0 commit comments

Comments
 (0)