From 093665e3c318b1360df5a7338facc2b47ac5b54a Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 28 May 2024 00:09:43 -0400 Subject: [PATCH] refactor(lib): allow warnings in 0.14.x (#3677) --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 3729aac62d..064a18ec30 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,8 @@ #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(rust_2018_idioms))] #![cfg_attr(all(test, feature = "full"), deny(unreachable_pub))] -#![cfg_attr(all(test, feature = "full", not(feature = "nightly")), deny(warnings))] +// 0.14.x is not actively developed, new warnings just get in the way. +//#![cfg_attr(all(test, feature = "full", not(feature = "nightly")), deny(warnings))] #![cfg_attr(all(test, feature = "nightly"), feature(test))] #![cfg_attr(docsrs, feature(doc_cfg))]