Skip to content

Commit

Permalink
Merge pull request #138 from plaans/update
Browse files Browse the repository at this point in the history
deps: update dependencies
  • Loading branch information
arbimo committed Jun 25, 2024
2 parents fb077f0 + 8b2712a commit fb61f62
Show file tree
Hide file tree
Showing 15 changed files with 550 additions and 563 deletions.
872 changes: 382 additions & 490 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ num-rational = { version = "0.4.1" }
regex = { version = "1" }
tracing = { version = "0.1", features = ["release_max_level_debug"] }
tracing-subscriber = "0.3"
itertools = { version = "0.12.1" }
itertools = { version = "0.13" }
rand = { version = "0.8.5", features = ["small_rng"] }
fixedbitset = { version = "0.5.7", default-features = false }
prost = { version = "0.12.6" }
tonic = "0.11.0"
tonic-build = "0.11.0"

[profile.dev]
opt-level = 0
Expand Down
2 changes: 1 addition & 1 deletion examples/gg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "aries_gg"
version = "0.1.0"
authors = ["Arthur Bit-Monnot <abitmonnot@laas.fr>"]
edition = "2018"
edition = "2021"

[dependencies]
structopt = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/knapsack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "aries_knapsack"
version = "0.1.0"
authors = ["Arthur Bit-Monnot <abitmonnot@laas.fr>"]
edition = "2018"
edition = "2021"

[dependencies]
aries = { path = "../../solver" }
Expand Down
4 changes: 2 additions & 2 deletions examples/sat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
name = "aries_sat"
version = "0.1.0"
authors = ["Arthur Bit-Monnot <abitmonnot@laas.fr>"]
edition = "2018"
edition = "2021"

[dependencies]
structopt = "0.3"
anyhow = { workspace = true }
aries = { path = "../../solver" }
varisat-dimacs = "0.2.2"
varisat-formula = "0.2.2"
zip = { default-features = false, features = ["deflate"], version = "0.6" }
zip = { default-features = false, features = ["deflate"], version = "2.1.3" }


[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion examples/smt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "aries_smt"
version = "0.1.0"
authors = ["Arthur Bit-Monnot <abitmonnot@laas.fr>"]
edition = "2018"
edition = "2021"

[dependencies]
aries = { path = "../../solver" }
Expand Down
8 changes: 4 additions & 4 deletions planning/grpc/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
authors = ["Selvakumar <selvakumar.h-s@laas.fr>"]
edition = "2018"
edition = "2021"
name = "unified_planning"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
prost = {default-features = false, version = "0.11"}
prost = { workspace = true }
regex = { workspace = true }
tonic = "0.8"
tonic = { workspace = true }
itertools = { workspace = true }

[build-dependencies]
tonic-build = {version = "0.8", optional = true}
tonic-build = { workspace = true, optional = true }

[features]
generate_bindings = ["tonic-build"]
Loading

0 comments on commit fb61f62

Please sign in to comment.