From: Kostya Shishkov Date: Sat, 9 Nov 2024 12:34:52 +0000 (+0100) Subject: nihav_registry: remove useless clippy warnings X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=c5edbc476ddb5a606cf8a2f23b31fb59474c456a;p=nihav.git nihav_registry: remove useless clippy warnings --- diff --git a/nihav-registry/src/lib.rs b/nihav-registry/src/lib.rs index 2e53255..a5dee38 100644 --- a/nihav-registry/src/lib.rs +++ b/nihav-registry/src/lib.rs @@ -1,7 +1,5 @@ //! Single place for storing information about container and codec formats. extern crate nihav_core; -#[allow(clippy::unreadable_literal)] pub mod detect; -#[allow(clippy::trivially_copy_pass_by_ref)] pub mod register;