diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 3e8cd9d9a..fafdd991e 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -12,6 +12,10 @@ #![cfg_attr(feature = "dox", feature(doc_cfg))] #![deny(clippy::dbg_macro)] #![deny(clippy::todo)] +// These two are in my experience the lints which are most likely +// to trigger, and among the least valuable to fix. +#![allow(clippy::needless_borrow)] +#![allow(clippy::needless_borrows_for_generic_args)] pub mod cli; pub(crate) mod deploy;