Skip to content

Commit

Permalink
refactor(lib): allow warnings in 0.14.x (#3677)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar authored May 28, 2024
1 parent dedcb67 commit 093665e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]

Expand Down

0 comments on commit 093665e

Please sign in to comment.