fix re-exports of crate submodules
[nihav.git] / nihav-indeo / src / lib.rs
CommitLineData
5641dccf 1extern crate nihav_core;
b4d5b851 2extern crate nihav_codec_support;
5641dccf 3
f2af8eca
KS
4#[allow(clippy::collapsible_if)]
5#[allow(clippy::identity_op)]
6#[allow(clippy::needless_range_loop)]
7#[allow(clippy::too_many_arguments)]
8#[allow(clippy::useless_let_if_seq)]
9#[allow(clippy::verbose_bit_mask)]
e64739f8
KS
10mod codecs;
11
1acf0737 12pub use crate::codecs::indeo_register_all_codecs;
3167c45c
KS
13
14#[cfg(test)]
15extern crate nihav_commonfmt;