Skip to content

Commit

Permalink
Fix itertools dependency (#743)
Browse files Browse the repository at this point in the history
Fixes itertools dependency. Allow version 0.12.
This deduplicates dependencies
  • Loading branch information
PSeitz committed Dec 1, 2023
1 parent 5686399 commit 3bb6a81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -23,7 +23,7 @@ exclude = ["book/*"]
anes = "0.1.4"
once_cell = "1.14"
criterion-plot = { path = "plot", version = "0.5.0" }
itertools = ">=0.10, <12"
itertools = ">=0.10, <=0.12"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion plot/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
cast = "0.3"
itertools = ">=0.10, <12"
itertools = ">=0.10, <=0.12"

[dev-dependencies]
itertools-num = "0.1"
Expand Down

0 comments on commit 3bb6a81

Please sign in to comment.