X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-game%2Fsrc%2Flib.rs;h=f619cb919087039176ebcf1d1b61d05faec8698f;hb=fa57381ec2a3b8c441aa1388492b9ca037cfcf78;hp=f2a94f98f19e178ccfd548e8669a90281f6d6129;hpb=1acf07374174f1084c31138f2f0a6ec916c7f8e8;p=nihav.git diff --git a/nihav-game/src/lib.rs b/nihav-game/src/lib.rs index f2a94f9..f619cb9 100644 --- a/nihav-game/src/lib.rs +++ b/nihav-game/src/lib.rs @@ -1,7 +1,15 @@ extern crate nihav_core; extern crate nihav_codec_support; +#[allow(clippy::collapsible_if)] +#[allow(clippy::excessive_precision)] +#[allow(clippy::needless_range_loop)] +#[allow(clippy::unreadable_literal)] +#[allow(clippy::useless_let_if_seq)] mod codecs; pub use crate::codecs::game_register_all_codecs; +#[allow(clippy::collapsible_if)] +#[allow(clippy::needless_range_loop)] +#[allow(clippy::unreadable_literal)] mod demuxers; -pub use crate::demuxers::game_register_all_demuxers; \ No newline at end of file +pub use crate::demuxers::game_register_all_demuxers;