Skip to content

Commit cfeb190

Browse files
Update itertools from 0.7 to 0.13 (#522)
1 parent 9376560 commit cfeb190

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ bincode = "1.3.1"
3636
indexmap = "2.1"
3737
rand="0.4"
3838
byteorder="1"
39-
itertools="^0.7"
39+
itertools="^0.13"
4040
serde_json = "1.0"
4141
graph_map = "0.1"
4242

tests/import.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn run_test<T>(test: T, expected: Vec<(usize, Vec<((u64, i64), i64)>)>) -> ()
2828
let out =
2929
results
3030
.into_iter()
31-
.group_by(|&(_, t, _)| t)
31+
.chunk_by(|&(_, t, _)| t)
3232
.into_iter()
3333
.map(|(t, vals)| {
3434
let mut vec = vals.map(|(v, _, w)| (v, w)).collect::<Vec<_>>();

0 commit comments

Comments
 (0)