fix re-exports of crate submodules
[nihav.git] / nihav-indeo / src / lib.rs
... / ...
CommitLineData
1extern crate nihav_core;
2extern crate nihav_codec_support;
3
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)]
10mod codecs;
11
12pub use crate::codecs::indeo_register_all_codecs;
13
14#[cfg(test)]
15extern crate nihav_commonfmt;