From 0b01431b89dadc981667a44b67d4869cbd67a21f Mon Sep 17 00:00:00 2001 From: Peter Atashian Date: Thu, 28 May 2020 10:10:49 -0400 Subject: [PATCH] Fix breakage from latest nightly due to https://github.com/rust-lang/rust/pull/72342 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index a57abbe08..cf2d938fe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ #![cfg(windows)] #![deny(unused, unused_qualifications)] #![warn(unused_attributes)] -#![allow(bad_style, overflowing_literals, unused_macros, deprecated)] +#![allow(bad_style, overflowing_literals, unused_macros, deprecated, unused_crate_dependencies)] #![recursion_limit = "2563"] #![no_std] //Uncomment as needed or once minimum Rust version is bumped to 1.18