diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 0c51dcd85c..637c3d1a86 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -17,6 +17,13 @@ #![cfg_attr(feature = "strict", deny(warnings))] +// Clippy lints we want to suppress due to style, or simply too noisy +// and not a priority right now. +#![allow(clippy::missing_safety_doc)] +#![allow(clippy::needless_return)] +#![allow(clippy::redundant_field_names)] +#![allow(clippy::len_zero)] + #[macro_use] extern crate nom;