Skip to content

Commit

Permalink
Remove allow(unknown_lints)
Browse files Browse the repository at this point in the history
We do not have any unknown lints, I'm not even sure its possible to get
them now that we have the MSRV in the clippy config file.
  • Loading branch information
tcharding committed Apr 3, 2023
1 parent f5cd60e commit 7fb1755
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 @@ -29,8 +29,7 @@ assert_eq!(variant, Variant::Bech32);
)]
//!

// Allow trait objects without dyn on nightly and make 1.22 ignore the unknown lint
#![allow(unknown_lints)]
// Allow trait objects without dyn on nightly.
#![allow(bare_trait_objects)]
#![deny(missing_docs)]
#![deny(non_upper_case_globals)]
Expand Down

0 comments on commit 7fb1755

Please sign in to comment.