core: fix most clippy warnings
[nihav.git] / nihav-core / src / lib.rs
index 615a0cf997a259e91e987f0131a9e9dc308472a8..08e7134906784825bcba042b6e1db41698355892 100644 (file)
@@ -1,4 +1,5 @@
 #[cfg(feature="decoders")]
+#[allow(clippy::unreadable_literal)]
 pub mod codecs;
 
 #[cfg(feature="demuxers")]
@@ -9,9 +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;