Skip to content

build(deps): bump blake3 from 1.5.3 to 1.5.4 #4

build(deps): bump blake3 from 1.5.3 to 1.5.4

build(deps): bump blake3 from 1.5.3 to 1.5.4 #4

GitHub Actions / clippy succeeded Aug 19, 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 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~