diff --git a/zebra-network/src/lib.rs b/zebra-network/src/lib.rs index 9a7fb555..e99506c8 100644 --- a/zebra-network/src/lib.rs +++ b/zebra-network/src/lib.rs @@ -34,9 +34,10 @@ #![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")] #![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_network")] #![deny(missing_docs)] +#![allow(clippy::try_err)] // Tracing causes false positives on this lint: // https://github.com/tokio-rs/tracing/issues/553 -#![allow(clippy::cognitive_complexity, clippy::try_err)] +#![allow(clippy::cognitive_complexity)] #[macro_use] extern crate pin_project;