rad: fix some clippy warnings
[nihav.git] / nihav-rad / src / lib.rs
index f723e9ef1aca9a4aa0c32f9488b62770ce504cff..1b566da815a3b83eb1a9981ea50ad9ea106b170f 100644 (file)
@@ -1,6 +1,15 @@
 extern crate nihav_core;
 
 #[cfg(feature="decoders")]
+#[allow(clippy::cast_lossless)]
+#[allow(clippy::collapsible_if)]
+#[allow(clippy::excessive_precision)]
+#[allow(clippy::identity_op)]
+#[allow(clippy::needless_range_loop)]
+#[allow(clippy::too_many_arguments)]
+#[allow(clippy::unreadable_literal)]
+#[allow(clippy::useless_let_if_seq)]
 pub mod codecs;
 #[cfg(feature="demuxers")]
+#[allow(clippy::cast_lossless)]
 pub mod demuxers;
\ No newline at end of file