]> git.nihav.org Git - nihav.git/blobdiff - nihav-core/src/lib.rs
Make BitReader rely on passed slice size without the additional arguments.
[nihav.git] / nihav-core / src / lib.rs
index d36297f51d9bce4f214cb7e4f175089488dd32a8..6ac5cafea80e913c7a09f8598dd8c11c08be5e67 100644 (file)
@@ -1,18 +1,33 @@
 #[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 reorder;
 pub mod scale;
+pub mod soundcvt;
 
 #[cfg(feature="dsp")]
+#[allow(clippy::excessive_precision)]
+#[allow(clippy::identity_op)]
+#[allow(clippy::needless_range_loop)]
+#[allow(clippy::unreadable_literal)]
 pub mod dsp;
 
+pub mod data;
+
 pub mod test;