Skip to content

Commit 86ae576

Browse files
committed
work around clippy grpc mess
1 parent 319d7a7 commit 86ae576

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Cargo.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ codegen-units = 1
1515
unsafe_code = "forbid"
1616

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

0 commit comments

Comments
 (0)