move GenericCache to common place
[nihav.git] / nihav-core / src / lib.rs
index 07c451e150004a94aa83212da02cceaa7331682c..4b6729c861c74c98b43c01e2f928f0e40cefebe3 100644 (file)
@@ -1,17 +1,31 @@
 #[cfg(feature="decoders")]
+#[allow(clippy::cast_lossless)]
+#[allow(clippy::identity_op)]
+#[allow(clippy::too_many_arguments)]
+#[allow(clippy::unreadable_literal)]
 pub mod codecs;
 
 #[cfg(feature="demuxers")]
 pub mod demuxers;
 
+#[allow(clippy::too_many_arguments)]
 pub mod formats;
 pub mod frame;
+#[allow(clippy::too_many_arguments)]
 pub mod io;
+pub mod refs;
 pub mod register;
+#[allow(clippy::unreadable_literal)]
 pub mod detect;
+pub mod scale;
 
 #[cfg(feature="dsp")]
+#[allow(clippy::excessive_precision)]
+#[allow(clippy::identity_op)]
+#[allow(clippy::needless_range_loop)]
+#[allow(clippy::unreadable_literal)]
 pub mod dsp;
 
-#[cfg(test)]
-mod test;
+pub mod data;
+
+pub mod test;