core: fix most clippy warnings
[nihav.git] / nihav-core / src / lib.rs
CommitLineData
77d06de2 1#[cfg(feature="decoders")]
e243ceb4 2#[allow(clippy::unreadable_literal)]
77d06de2
KS
3pub mod codecs;
4
5#[cfg(feature="demuxers")]
5869fd63 6pub mod demuxers;
77d06de2 7
fba6f8e4 8pub mod formats;
5869fd63 9pub mod frame;
90aa4e6b 10pub mod io;
1a967e6b 11pub mod refs;
d48ee414 12pub mod register;
e243ceb4 13#[allow(clippy::unreadable_literal)]
b5bd2ae4 14pub mod detect;
03accf76 15pub mod scale;
3f3b5b23 16
e35062e7 17#[cfg(feature="dsp")]
e243ceb4 18#[allow(clippy::unreadable_literal)]
3f3b5b23 19pub mod dsp;
cc0859d6 20
4f6124ac 21pub mod test;