Skip to content

Commit

Permalink
work around clippy grpc mess
Browse files Browse the repository at this point in the history
  • Loading branch information
extrawurst committed Dec 5, 2024
1 parent 319d7a7 commit 86ae576
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ codegen-units = 1
unsafe_code = "forbid"

[workspace.lints.clippy]
cargo = "deny"
pedantic = "deny"
nursery = "deny"
cargo = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
# see https://github.com/rust-lang/rust-clippy/issues/12729
# panic = "deny"
used_underscore_items = "allow"

0 comments on commit 86ae576

Please sign in to comment.