Skip to content

Commit

Permalink
Avoids moving warnings into errors
Browse files Browse the repository at this point in the history
Allows avoiding breaking compilation if new warnings are enabled
  • Loading branch information
Tpt committed Mar 26, 2022
1 parent d026864 commit 9888ac5
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
#![doc = include_str!("../README.md")]
#![deny(
future_incompatible,
nonstandard_style,
rust_2018_idioms,
missing_copy_implementations,
trivial_casts,
trivial_numeric_casts,
unsafe_code,
unused_qualifications
)]
#![deny(unsafe_code)]

use std::borrow::{Borrow, Cow};
use std::cmp::Ordering;
Expand Down

0 comments on commit 9888ac5

Please sign in to comment.