Skip to content

Commit

Permalink
Fix unknown lint for beta and stable
Browse files Browse the repository at this point in the history
  • Loading branch information
CraZySacX committed Aug 13, 2023
1 parent 515ff6f commit 0e01432
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pudcli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
// #![cfg_attr(all(msrv, stable), deny())]
// clippy lints
#![cfg_attr(msrv, deny(clippy::all, clippy::pedantic))]
#![cfg_attr(all(msrv, any(beta, nightly)), allow(clippy::ignored_unit_patterns))]
#![cfg_attr(all(msrv, nightly), allow(clippy::ignored_unit_patterns))]
// #![cfg_attr(msrv, allow())]

use anyhow::Result;
Expand Down
2 changes: 1 addition & 1 deletion pudlib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
// #![cfg_attr(all(msrv, stable), deny())]
// clippy lints
#![cfg_attr(msrv, deny(clippy::all, clippy::pedantic))]
#![cfg_attr(all(msrv, any(beta, nightly)), allow(clippy::ignored_unit_patterns))]
#![cfg_attr(all(msrv, nightly), allow(clippy::ignored_unit_patterns))]
// #![cfg_attr(msrv, allow())]
// rustdoc lints
#![cfg_attr(
Expand Down
2 changes: 1 addition & 1 deletion puds/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
// #![cfg_attr(all(msrv, stable), deny())]
// clippy lints
#![cfg_attr(msrv, deny(clippy::all, clippy::pedantic))]
#![cfg_attr(all(msrv, any(beta, nightly)), allow(clippy::ignored_unit_patterns))]
#![cfg_attr(all(msrv, nightly), allow(clippy::ignored_unit_patterns))]

mod constants;
mod endpoints;
Expand Down
2 changes: 1 addition & 1 deletion pudw/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
// #![cfg_attr(all(msrv, stable), deny())]
// clippy lints
#![cfg_attr(msrv, deny(clippy::all, clippy::pedantic))]
#![cfg_attr(all(msrv, any(beta, nightly)), allow(clippy::ignored_unit_patterns))]
#![cfg_attr(all(msrv, nightly), allow(clippy::ignored_unit_patterns))]
// #![cfg_attr(msrv, allow())]

use error::{clap_or_error, success};
Expand Down

0 comments on commit 0e01432

Please sign in to comment.