Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Mar 25, 2024
1 parent 7fe847f commit 3a5fd2e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ vrp-cli = { path = "vrp-cli", version = "1.23.0" }

# external dependencies
hashbrown = "0.14.3"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.8.0"
rayon = "1.10.0"
rustc-hash = "1.1.0"

[profile.release]
Expand Down
4 changes: 2 additions & 2 deletions experiments/heuristic-research/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ plotters = { version = "0.3.5", default-features = false, features = [
] }
plotters-canvas = "0.3.0"
itertools = "0.11.0"
wasm-bindgen = "0.2.89"
web-sys = { version = "0.3.66", features = ["HtmlCanvasElement", "console"] }
wasm-bindgen = "0.2.92"
web-sys = { version = "0.3.69", 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,8 +24,8 @@ rand_distr = "0.4.3"

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

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2.11", features = ["js"] }
js-sys = "0.3.66"
getrandom = { version = "0.2.12", features = ["js"] }
js-sys = "0.3.69"
14 changes: 7 additions & 7 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.3.0", optional = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
clap = "4.4.11"
ctrlc = { version = "3.4.2", features = ["termination"] }
clap = "4.5.3"
ctrlc = { version = "3.4.4", 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.20.0", features=["extension-module"], optional = true }
pyo3 = { version= "0.20.3", features=["extension-module"], optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { version = "0.2.89" }
serde-wasm-bindgen = "0.6.3"
js-sys = "0.3.66"
wasm-bindgen = { version = "0.2.92" }
serde-wasm-bindgen = "0.6.5"
js-sys = "0.3.69"

[dev-dependencies]
tempfile = "3.8.1"
tempfile = "3.10.1"
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.31", features = ["parsing", "formatting"] }
time = { version = "0.3.34", features = ["parsing", "formatting"] }

[dev-dependencies]
proptest = "1.4.0"
uuid = { version = "1.6.1", features = ["v4"] }
uuid = { version = "1.8.0", features = ["v4"] }

0 comments on commit 3a5fd2e

Please sign in to comment.