]>
Commit | Line | Data |
---|---|---|
1b8522d6 | 1 | extern crate nihav_core; |
b4d5b851 | 2 | extern crate nihav_codec_support; |
1b8522d6 | 3 | |
47933c6d KS |
4 | #[allow(clippy::collapsible_if)] |
5 | #[allow(clippy::excessive_precision)] | |
6 | #[allow(clippy::identity_op)] | |
7 | #[allow(clippy::unreadable_literal)] | |
8 | #[allow(clippy::verbose_bit_mask)] | |
e64739f8 KS |
9 | mod codecs; |
10 | ||
1acf0737 | 11 | pub use crate::codecs::duck_register_all_codecs; |
1b8522d6 KS |
12 | |
13 | #[cfg(test)] | |
14 | extern crate nihav_commonfmt; |