Skip to content

Commit 093665e

Browse files
authored
refactor(lib): allow warnings in 0.14.x (#3677)
1 parent dedcb67 commit 093665e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
#![deny(missing_debug_implementations)]
33
#![cfg_attr(test, deny(rust_2018_idioms))]
44
#![cfg_attr(all(test, feature = "full"), deny(unreachable_pub))]
5-
#![cfg_attr(all(test, feature = "full", not(feature = "nightly")), deny(warnings))]
5+
// 0.14.x is not actively developed, new warnings just get in the way.
6+
//#![cfg_attr(all(test, feature = "full", not(feature = "nightly")), deny(warnings))]
67
#![cfg_attr(all(test, feature = "nightly"), feature(test))]
78
#![cfg_attr(docsrs, feature(doc_cfg))]
89

0 commit comments

Comments
 (0)