Skip to content

build(deps): bump syn from 2.0.75 to 2.0.76 #6

build(deps): bump syn from 2.0.75 to 2.0.76

build(deps): bump syn from 2.0.75 to 2.0.76 #6

GitHub Actions / clippy succeeded Aug 26, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

Cargo.toml|19 col 23| error: lint group future_incompatible has the same priority (0) as a lint
--> Cargo.toml:19:1
|
19 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
20 | missing_docs = "warn"
| ------------ has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: #[deny(clippy::lint_groups_priority)] on by default
help: to have lints override the group set future_incompatible to a lower priority
|
19 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~