We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unexpected_cfgs
There has been a change in newer compiler versions causing unexpected_cfgs to be reported in derive macros (rust-lang/rust#132577).
The warning is triggered here:
npyz/derive/src/lib.rs
Line 256 in 55f210e
cargo clippy is about to remove its feature setting behavior as posted in https://blog.rust-lang.org/2024/02/28/Clippy-deprecating-feature-cargo-clippy.html
cargo clippy
I suppose the line can simply be replaced with #[allow(clippy:useless_attribute)].
#[allow(clippy:useless_attribute)]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There has been a change in newer compiler versions causing
unexpected_cfgs
to be reported in derive macros (rust-lang/rust#132577).The warning is triggered here:
npyz/derive/src/lib.rs
Line 256 in 55f210e
cargo clippy
is about to remove its feature setting behavior as posted in https://blog.rust-lang.org/2024/02/28/Clippy-deprecating-feature-cargo-clippy.htmlI suppose the line can simply be replaced with
#[allow(clippy:useless_attribute)]
.The text was updated successfully, but these errors were encountered: