X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-commonfmt%2Fsrc%2Flib.rs;h=b5b96d2e756ec7b7b42bc3e220e37dbfc10f36a6;hb=61a228fffe74899d177c1c2876b2a4e3bf43cba8;hp=82bfd493784b1a474b4c55ca1d3fd99728e80a31;hpb=5cd2f53775f5dcb021ab1294417a57d4fc303d42;p=nihav.git diff --git a/nihav-commonfmt/src/lib.rs b/nihav-commonfmt/src/lib.rs index 82bfd49..b5b96d2 100644 --- a/nihav-commonfmt/src/lib.rs +++ b/nihav-commonfmt/src/lib.rs @@ -3,6 +3,8 @@ extern crate nihav_codec_support; extern crate nihav_registry; #[cfg(feature="decoders")] +#[allow(clippy::needless_range_loop)] +#[allow(clippy::single_match)] #[allow(clippy::unreadable_literal)] #[allow(clippy::too_many_arguments)] #[allow(clippy::excessive_precision)] @@ -10,6 +12,8 @@ mod codecs; #[cfg(feature="decoders")] pub use crate::codecs::generic_register_all_codecs; +#[cfg(feature="encoders")] +pub use crate::codecs::generic_register_all_encoders; #[cfg(feature="demuxers")] mod demuxers;