Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump clap from 4.4.6 to 4.5.16 in /scripts/helper_scripts/unipept-database-rs #64

Bump clap in /scripts/helper_scripts/unipept-database-rs

c6392b9
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

Bump clap from 4.4.6 to 4.5.16 in /scripts/helper_scripts/unipept-database-rs #64

Bump clap in /scripts/helper_scripts/unipept-database-rs
c6392b9
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Sep 1, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

src/dat_parser/entry.rs|226 col 30| error: writing &mut Vec instead of &mut [_] involves a new object where a slice will do
--> src/dat_parser/entry.rs:226:30
|
226 | fn parse_db_references(data: &mut Vec, index: &mut usize) -> (Vec, Vec) {
| ^^^^^^^^^^^^^^^^ help: change this to: &mut [String]
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
= note: -D clippy::ptr-arg implied by -D warnings
= help: to override -D warnings add #[allow(clippy::ptr_arg)]