Skip to content

Commit

Permalink
fix compiling bug with itertools
Browse files Browse the repository at this point in the history
  • Loading branch information
Yirmandias committed Sep 1, 2023
1 parent 6661879 commit 2616838
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion planning/planning/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
[dependencies]
anyhow = { workspace = true }
fixedbitset = { default-features = false, version = "0.4" }
itertools = { default-features = false, version = "0.10" }
itertools = { version = "0.11.0" }
streaming-iterator = "0.1.5"
regex = { features = ["std"], default-features = false, version = "1" }
aries = { path = "../../solver" }
Expand Down
2 changes: 1 addition & 1 deletion solver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ anyhow = { workspace = true }
streaming-iterator = "0.1.5"
lazy_static = "1.4.0"
vec_map = "0.8.1"
itertools = { default-features = false, version = "0.10" }
itertools = {version = "0.11.0"}
bit-set = { default-features = false, version = "0.5.2" }
crossbeam-channel = "0.5"
env_param = { path = "../env_param" }
Expand Down

0 comments on commit 2616838

Please sign in to comment.