Skip to content

Commit

Permalink
Merge pull request #163 from rakaly/supress-lint
Browse files Browse the repository at this point in the history
Suppress unoptimized cfg lint
  • Loading branch information
nickbabcock committed Sep 11, 2024
2 parents ac7256d + 1d219b4 commit 9f5ba4c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,8 @@ debug = true
lto = true
codegen-units = 1
debug = true

[lints.rust]
# suppress unoptimized cfg lint as it's not a "feature", but a mode
# that's useful to drop into to fuzz against
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(unoptimized_build)'] }

0 comments on commit 9f5ba4c

Please sign in to comment.