move GenericCache to common place
[nihav.git] / nihav-core / src / lib.rs
... / ...
CommitLineData
1#[cfg(feature="decoders")]
2#[allow(clippy::cast_lossless)]
3#[allow(clippy::identity_op)]
4#[allow(clippy::too_many_arguments)]
5#[allow(clippy::unreadable_literal)]
6pub mod codecs;
7
8#[cfg(feature="demuxers")]
9pub mod demuxers;
10
11#[allow(clippy::too_many_arguments)]
12pub mod formats;
13pub mod frame;
14#[allow(clippy::too_many_arguments)]
15pub mod io;
16pub mod refs;
17pub mod register;
18#[allow(clippy::unreadable_literal)]
19pub mod detect;
20pub mod scale;
21
22#[cfg(feature="dsp")]
23#[allow(clippy::excessive_precision)]
24#[allow(clippy::identity_op)]
25#[allow(clippy::needless_range_loop)]
26#[allow(clippy::unreadable_literal)]
27pub mod dsp;
28
29pub mod data;
30
31pub mod test;