Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix lint errors with Rust 1.78 beta (#184)
Fixes this lint error I get locally with Rust 1.78 beta: ``` error: lint group `pedantic` has the same priority (0) as a lint --> Cargo.toml:15:1 | 15 | pedantic = "warn" | ^^^^^^^^ ------ has an implicit priority of 0 16 | unwrap_used = "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 `pedantic` to a lower priority | 15 | pedantic = { level = "warn", priority = -1 } | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` GUS-W-15303120.
- Loading branch information