X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=a53f304b2b8013cd1e560bfbfd7c55dacdf1e682;hb=b4d5b8515e75383b4fc59ea2813c90c615d59a96;hp=6ac5cafea80e913c7a09f8598dd8c11c08be5e67;hpb=47f26235350744ebf034ff18467e449a249f7703;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index 6ac5caf..a53f304 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -1,3 +1,4 @@ +//! 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)] @@ -20,14 +21,3 @@ 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;