Skip to content

Commit

Permalink
fix(deps): Fix compiling bug with itertools (#101)
Browse files Browse the repository at this point in the history
* fix compiling bug with itertools

* define itertools in workspace
  • Loading branch information
Yirmandias committed Sep 1, 2023
1 parent c16d5fb commit efe8866
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 15 deletions.
21 changes: 15 additions & 6 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ anyhow = { version = "1.0"}
clap = {version = "4.0", features = ["derive"]}
tracing = { version = "0.1", features = ["release_max_level_debug"] }
tracing-subscriber = "0.3"
itertools = { version = "0.11.0" }

[profile.dev]
opt-level = 0
Expand Down
2 changes: 1 addition & 1 deletion cp/collections/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"

[dependencies]
vec_map = "0.8.1"
itertools = { default-features = false, version = "0.10" }
itertools = { workspace = true }
bit-set = { default-features = false, version = "0.5.2" }


Expand Down
2 changes: 1 addition & 1 deletion cp/solver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ aries_core = { path = "../core" }
aries_model = { path = "../model" }
crossbeam-channel = "0.5"
env_param = { path = "../../env_param" }
itertools = { version = "0.10" }
itertools = { workspace = true }
num-traits = { default-features = false, version = "0.2.14" }

2 changes: 1 addition & 1 deletion cp/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"

[dependencies]
streaming-iterator = "0.1.5"
itertools = { default-features = false, version = "0.10.0" }
itertools = { workspace = true }
2 changes: 1 addition & 1 deletion examples/scheduling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Arthur Bit-Monnot <[email protected]>"]
edition = "2021"

[dependencies]
itertools = "0.10"
itertools = { workspace = true }
structopt = "0.3"
anyhow = { workspace = true }
aries = { path = "../../solver", features = ["cpu_cycles"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/smt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2018"

[dependencies]
aries = { path = "../../solver" }
itertools = { version = "0.10" }
itertools = { workspace = true }
2 changes: 1 addition & 1 deletion planning/grpc/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async-trait = "0.1"
prost = {default-features = false, version = "0.11"}
regex = {features = ["std"], default-features = false, version = "1"}
tonic = "0.8"
itertools = "0.10"
itertools = { workspace = true }

[build-dependencies]
tonic-build = {version = "0.8", optional = true}
Expand Down
2 changes: 1 addition & 1 deletion planning/grpc/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ clap = { workspace = true }
fixedbitset = { default-features = false, version = "0.4" }
futures-core = { default-features = false, version = "0.3" }
futures-util = { default-features = false, version = "0.3" }
itertools = { default-features = false, version = "0.10" }
itertools = { workspace = true }
num-rational = { default-features = false, version = "0.4" }
prost = { default-features = false, version = "0.11" }
regex = { default-features = false, version = "1" }
Expand Down
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 = { workspace = true }
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 = { workspace = true }
bit-set = { default-features = false, version = "0.5.2" }
crossbeam-channel = "0.5"
env_param = { path = "../env_param" }
Expand Down

0 comments on commit efe8866

Please sign in to comment.