indeo: fix some clippy warnings
[nihav.git] / nihav-indeo / src / lib.rs
index adda3bf8f9034dc9130441ff77b1a2f57f6764c3..78bb0608390e96ee3c713ce0ca25f9ce57e76c17 100644 (file)
@@ -1,3 +1,12 @@
 extern crate nihav_core;
 
+#[allow(clippy::collapsible_if)]
+#[allow(clippy::identity_op)]
+#[allow(clippy::needless_range_loop)]
+#[allow(clippy::too_many_arguments)]
+#[allow(clippy::useless_let_if_seq)]
+#[allow(clippy::verbose_bit_mask)]
 pub mod codecs;
+
+#[cfg(test)]
+extern crate nihav_commonfmt;
\ No newline at end of file