fix clippy warnings
[nihav.git] / nihav-rad / src / lib.rs
index 16a622c3ee341ad8966832bfdfbccbce58279d64..f7bce33a9fee072d5824da2e4e245d7631778770 100644 (file)
@@ -1,15 +1,19 @@
+//! Crate for providing support for Bink and Smacker formats.
 extern crate nihav_core;
 extern crate nihav_codec_support;
 
 #[cfg(feature="decoders")]
 #[allow(clippy::cast_lossless)]
 #[allow(clippy::collapsible_if)]
+#[allow(clippy::collapsible_else_if)]
 #[allow(clippy::excessive_precision)]
 #[allow(clippy::identity_op)]
 #[allow(clippy::needless_range_loop)]
+#[allow(clippy::needless_late_init)]
 #[allow(clippy::too_many_arguments)]
 #[allow(clippy::unreadable_literal)]
 #[allow(clippy::useless_let_if_seq)]
+#[allow(clippy::upper_case_acronyms)]
 mod codecs;
 #[cfg(feature="decoders")]
 pub use crate::codecs::rad_register_all_decoders;