Skip to content

Commit

Permalink
Don't deny(warnings)
Browse files Browse the repository at this point in the history
We already use `-- -D warnings` with clippy in CI, that's enough
breakage through new lints being introduced.
  • Loading branch information
jplatte committed Jan 16, 2021
1 parent 8ef1615 commit 664ca1a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,12 +272,11 @@
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico"
)]
#![cfg_attr(test, deny(warnings))]
// When compiled for the rustc compiler itself we want to make sure that this is
// an unstable crate
#![cfg_attr(rustbuild, feature(staged_api, rustc_private))]
#![cfg_attr(rustbuild, unstable(feature = "rustc_private", issue = "27812"))]
#![deny(missing_debug_implementations, missing_docs, warnings)]
#![deny(missing_debug_implementations, missing_docs)]

use std::{borrow::Cow, cell::RefCell, env, io};

Expand Down

0 comments on commit 664ca1a

Please sign in to comment.