Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Oct 6, 2024
1 parent e2ee0cd commit ff0ac24
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ vrp-pragmatic = { path = "vrp-pragmatic", version = "1.24.0" }
vrp-cli = { path = "vrp-cli", version = "1.24.0" }

# external dependencies
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.10.0"
rustc-hash = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion experiments/heuristic-research/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ vrp-scientific.workspace = true
serde.workspace = true
serde_json.workspace = true

plotters = "0.3.6"
plotters = "0.3.7"
plotters-canvas = "0.3.0"
itertools = "0.13.0"
wasm-bindgen = "0.2.93"
Expand Down
6 changes: 3 additions & 3 deletions vrp-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ serde_json.workspace = true
csv = { version = "1.3.0", optional = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
clap = "4.5.16"
clap = "4.5.19"
ctrlc = { version = "3.4.5", features = ["termination"] }
num_cpus = "1.16.0"

# see https://github.com/xd009642/tarpaulin/issues/1092
[target.'cfg(all(not(target_arch = "wasm32"), not(tarpaulin)))'.dependencies]
pyo3 = { version= "0.22.2", features=["extension-module"], optional = true }
pyo3 = { version= "0.22.3", features=["extension-module"], optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { version = "0.2.93" }
serde-wasm-bindgen = "0.6.5"
js-sys = "0.3.70"

[dev-dependencies]
tempfile = "3.12.0"
tempfile = "3.13.0"

0 comments on commit ff0ac24

Please sign in to comment.