This repository was archived by the owner on Dec 6, 2024. It is now read-only.
Bump itertools from 0.10.5 to 0.12.1 #490
Annotations
3 errors
use of deprecated method `itertools::Itertools::group_by`: Use .chunk_by() instead:
src/filenames/bcl2fastq.rs#L189
error: use of deprecated method `itertools::Itertools::group_by`: Use .chunk_by() instead
--> src/filenames/bcl2fastq.rs:189:46
|
189 | for (group, files) in &files.into_iter().group_by(|(info, _)| (info.group.clone())) {
| ^^^^^^^^
|
note: the lint level is defined here
--> src/lib.rs:12:9
|
12 | #![deny(warnings, unused)]
| ^^^^^^^^
= note: `#[deny(deprecated)]` implied by `#[deny(warnings)]`
|
use of deprecated method `itertools::Itertools::group_by`: Use .chunk_by() instead:
src/filenames/bcl_processor.rs#L200
error: use of deprecated method `itertools::Itertools::group_by`: Use .chunk_by() instead
--> src/filenames/bcl_processor.rs:200:10
|
200 | .group_by(|info| info.group.clone())
| ^^^^^^^^
|
test
Clippy had exited with the 101 exit code
|