From fe2a94456ca58cb6d10bd9ed2eb0bb4dae6c5b20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Thu, 2 Sep 2021 03:21:25 +0200 Subject: [PATCH] tokio-xmpp: remove deny(unused) as long as it breaks nightly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Find a way to make it conditional on stable or something? Is that even possible? Signed-off-by: Maxime “pep” Buquet --- tokio-xmpp/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-xmpp/src/lib.rs b/tokio-xmpp/src/lib.rs index 9fe857b6..02c02aa4 100644 --- a/tokio-xmpp/src/lib.rs +++ b/tokio-xmpp/src/lib.rs @@ -1,6 +1,6 @@ //! XMPP implementation with asynchronous I/O using Tokio. -#![deny(unsafe_code, unused, missing_docs, bare_trait_objects)] +#![deny(unsafe_code, missing_docs, bare_trait_objects)] mod starttls; mod stream_start;