duck: fix or silence clippy warnings
[nihav.git] / nihav-duck / src / lib.rs
index 69c29682cd5812dd59dab1ca60e97c0e2f31ec60..a3d59f0b01b176fb82cb753aa51dca523fc5adac 100644 (file)
@@ -1,6 +1,11 @@
 extern crate nihav_core;
 extern crate nihav_codec_support;
 
+#[allow(clippy::collapsible_if)]
+#[allow(clippy::excessive_precision)]
+#[allow(clippy::identity_op)]
+#[allow(clippy::unreadable_literal)]
+#[allow(clippy::verbose_bit_mask)]
 mod codecs;
 
 pub use crate::codecs::duck_register_all_codecs;