Skip to content

Commit

Permalink
Allowing the unexpected_cfgs lint
Browse files Browse the repository at this point in the history
This recent change is causing CI to fail: rust-lang/rust#132577

The failure is caused by the `used_linker` feature in code produced by
the `ctor::ctor` attribute macro.
  • Loading branch information
smoelius committed Nov 20, 2024
1 parent 598f835 commit 56f6618
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ members = ["afl", "cargo-afl"]
resolver = "2"

[workspace.lints.rust.unexpected_cfgs]
level = "deny"
# smoelius: Temporarily setting the lint level to `allow`.
# level = "deny"
level = "allow"
check-cfg = ["cfg(fuzzing)"]

[workspace.lints.clippy]
Expand Down

0 comments on commit 56f6618

Please sign in to comment.