Skip to content

Commit

Permalink
NOISSUE - Update lint enforcement level based on issue
Browse files Browse the repository at this point in the history
rust-lang/rust#81670 to fix compile warnings
with stable 1.50.0
  • Loading branch information
jmcconnell26 committed Feb 17, 2021
1 parent 22ab44f commit 7feb909
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cargo-geiger-serde/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! This crate provides definitions to serialize the unsafety report.

#![forbid(unsafe_code)]
#![forbid(warnings)]
#![deny(warnings)]

mod package_id;
mod report;
Expand Down
2 changes: 1 addition & 1 deletion cargo-geiger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![deny(clippy::cargo)]
#![deny(clippy::doc_markdown)]
#![forbid(unsafe_code)]
#![forbid(warnings)]
#![deny(warnings)]

/// Argument parsing
pub mod args;
Expand Down
2 changes: 1 addition & 1 deletion cargo-geiger/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![deny(clippy::cargo)]
#![deny(clippy::doc_markdown)]
#![forbid(unsafe_code)]
#![forbid(warnings)]
#![deny(warnings)]

extern crate cargo;
extern crate colored;
Expand Down
2 changes: 1 addition & 1 deletion geiger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//! from `cargo`.

#![forbid(unsafe_code)]
#![forbid(warnings)]
#![deny(warnings)]

pub mod find;
mod geiger_syn_visitor;
Expand Down

0 comments on commit 7feb909

Please sign in to comment.