X-Git-Url: https://git.nihav.org/?p=nihav.git;a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=cf97841877afac09a634c11c50118f44b7e48556;hp=07c451e150004a94aa83212da02cceaa7331682c;hb=32f7cbe538d71574f7ac05aa51599d2678f5db3f;hpb=5641dccfbf2a70d589cf094a0d4ed5a10f919f00 diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index 07c451e..cf97841 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -1,17 +1,20 @@ +//! Core functionality of NihAV intended to be used by both crates implementing format support and users. #[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 register; -pub mod detect; - -#[cfg(feature="dsp")] -pub mod dsp; - -#[cfg(test)] -mod test; +pub mod refs; +pub mod reorder; +pub mod scale; +pub mod soundcvt;