realmedia: fix some clippy warnings
[nihav.git] / nihav-realmedia / src / lib.rs
CommitLineData
5641dccf
KS
1extern crate nihav_core;
2
e07387c7
KS
3#[cfg(feature="decoders")]
4#[allow(clippy::cast_lossless)]
5#[allow(clippy::collapsible_if)]
6#[allow(clippy::excessive_precision)]
7#[allow(clippy::identity_op)]
8#[allow(clippy::needless_range_loop)]
9#[allow(clippy::too_many_arguments)]
10#[allow(clippy::unreadable_literal)]
11#[allow(clippy::useless_let_if_seq)]
5641dccf 12pub mod codecs;
e07387c7
KS
13#[cfg(feature="demuxers")]
14#[allow(clippy::cast_lossless)]
15#[allow(clippy::too_many_arguments)]
16#[allow(clippy::unreadable_literal)]
17#[allow(clippy::useless_let_if_seq)]
5641dccf 18pub mod demuxers;