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