From f3e449875e97866f3e001ed1c87f93c74d314a95 Mon Sep 17 00:00:00 2001 From: Mingye Chen Date: Tue, 22 Oct 2024 18:54:04 -0400 Subject: [PATCH] Fix clippy err --- proto/signalling.rs | 1 + src/signalling.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/proto/signalling.rs b/proto/signalling.rs index f70cc7c1..2830fe7e 100644 --- a/proto/signalling.rs +++ b/proto/signalling.rs @@ -5,6 +5,7 @@ // https://github.com/rust-lang/rust-clippy/issues/702 #![allow(unknown_lints)] #![allow(clippy::all)] +#![allow(renamed_and_removed_lints)] #![allow(unused_attributes)] #![cfg_attr(rustfmt, rustfmt::skip)] diff --git a/src/signalling.rs b/src/signalling.rs index f70cc7c1..2830fe7e 100644 --- a/src/signalling.rs +++ b/src/signalling.rs @@ -5,6 +5,7 @@ // https://github.com/rust-lang/rust-clippy/issues/702 #![allow(unknown_lints)] #![allow(clippy::all)] +#![allow(renamed_and_removed_lints)] #![allow(unused_attributes)] #![cfg_attr(rustfmt, rustfmt::skip)]