core: fix most clippy warnings
[nihav.git] / nihav-core / src / lib.rs
index d36297f51d9bce4f214cb7e4f175089488dd32a8..08e7134906784825bcba042b6e1db41698355892 100644 (file)
@@ -1,4 +1,5 @@
 #[cfg(feature="decoders")]
+#[allow(clippy::unreadable_literal)]
 pub mod codecs;
 
 #[cfg(feature="demuxers")]
@@ -9,10 +10,12 @@ pub mod frame;
 pub mod io;
 pub mod refs;
 pub mod register;
+#[allow(clippy::unreadable_literal)]
 pub mod detect;
 pub mod scale;
 
 #[cfg(feature="dsp")]
+#[allow(clippy::unreadable_literal)]
 pub mod dsp;
 
 pub mod test;