Skip to content

Commit

Permalink
Update itertools from 0.7 to 0.13 (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Sep 30, 2024
1 parent 9376560 commit cfeb190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ bincode = "1.3.1"
indexmap = "2.1"
rand="0.4"
byteorder="1"
itertools="^0.7"
itertools="^0.13"
serde_json = "1.0"
graph_map = "0.1"

Expand Down
2 changes: 1 addition & 1 deletion tests/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn run_test<T>(test: T, expected: Vec<(usize, Vec<((u64, i64), i64)>)>) -> ()
let out =
results
.into_iter()
.group_by(|&(_, t, _)| t)
.chunk_by(|&(_, t, _)| t)
.into_iter()
.map(|(t, vals)| {
let mut vec = vals.map(|(v, _, w)| (v, w)).collect::<Vec<_>>();
Expand Down

0 comments on commit cfeb190

Please sign in to comment.