Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Jul 24, 2023
1 parent 809dff0 commit a6459b7
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 18 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
* improve required break functionality
* MDP adjustments
* improve managing packages with cargo's workspace
* update dependencies

### Added

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ edition = "2021"

[workspace.dependencies]
hashbrown = "0.14.0"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
serde = { version = "1.0.175", features = ["derive"] }
serde_json = "1.0.103"
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.7.0"
rustc-hash = "1.1.0"
Expand Down
10 changes: 5 additions & 5 deletions experiments/heuristic-research/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ crate-type = ["cdylib", "rlib"]
rosomaxa = { path = "../../rosomaxa", features = ["heuristic-telemetry"] }
vrp-scientific = { path = "../../vrp-scientific"}

serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
serde = { workspace = true }
serde_json = { workspace = true }

plotters = { version = "0.3.4", default-features = false, features = [
plotters = { version = "0.3.5", default-features = false, features = [
"bitmap_backend",
"bitmap_encoder",
"image",
"all_series",
] }
plotters-canvas = "0.3.0"
itertools = "0.10.5"
wasm-bindgen = "0.2.86"
web-sys = { version = "0.3.63", features = ["HtmlCanvasElement", "console"] }
wasm-bindgen = "0.2.87"
web-sys = { version = "0.3.64", features = ["HtmlCanvasElement", "console"] }
lazy_static = "1.4.0"
6 changes: 3 additions & 3 deletions rosomaxa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ rayon = { workspace = true }
rustc-hash = { workspace = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
num_cpus = "1.15.0"
tokio = { version= "1.28.2", features=["sync", "rt"], optional = true }
num_cpus = "1.16.0"
tokio = { version= "1.29.1", features=["sync", "rt"], optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2.10", features = ["js"] }
js-sys = "0.3.63"
js-sys = "0.3.64"
12 changes: 6 additions & 6 deletions vrp-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@ serde_json = { workspace = true }
csv = { version = "1.2.2", optional = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
clap = "4.3.2"
clap = "4.3.19"
ctrlc = { version = "3.4.0", features = ["termination"] }
num_cpus = "1.15.0"
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.19.0", features=["extension-module"], optional = true }
pyo3 = { version= "0.19.1", features=["extension-module"], optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { version = "0.2.86" }
wasm-bindgen = { version = "0.2.87" }
serde-wasm-bindgen = "0.5.0"
js-sys = "0.3.63"
js-sys = "0.3.64"

[dev-dependencies]
tempfile = "3.6.0"
tempfile = "3.7.0"
4 changes: 2 additions & 2 deletions vrp-pragmatic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ serde = { workspace = true }
serde_json = { workspace = true }
rand = { workspace = true }

time = { version = "0.3.22", features = ["parsing", "formatting"] }
time = { version = "0.3.23", features = ["parsing", "formatting"] }

[dev-dependencies]
proptest = "1.2.0"
uuid = { version = "1.3.3", features = ["v4"] }
uuid = { version = "1.4.1", features = ["v4"] }

0 comments on commit a6459b7

Please sign in to comment.