Skip to content

Commit

Permalink
Fix feature = "cargo-clippy" deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
rex4539 committed Feb 28, 2024
1 parent 96b66ac commit e989f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use tracing::debug;
after_help = "Visit https://maturin.rs to learn more about maturin.",
styles = cargo_options::styles(),
)]
#[cfg_attr(feature = "cargo-clippy", allow(clippy::large_enum_variant))]
#[cfg_attr(clippy, allow(clippy::large_enum_variant))]
/// Build and publish crates with pyo3, rust-cpython and cffi bindings as well
/// as rust binaries as python packages
enum Opt {
Expand Down

0 comments on commit e989f33

Please sign in to comment.