Skip to content

Commit

Permalink
Suppress warnings about try! macro
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 16, 2019
1 parent 668651e commit d6e5947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serde/src/lib.rs
Expand Up @@ -81,7 +81,7 @@
//
// https://github.com/serde-rs/serde/issues/812
#![cfg_attr(feature = "unstable", feature(specialization, never_type))]
#![allow(unknown_lints, bare_trait_objects)]
#![allow(unknown_lints, bare_trait_objects, deprecated)]
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
// Ignored clippy and clippy_pedantic lints
Expand Down

0 comments on commit d6e5947

Please sign in to comment.