From 3a5fd2e766815d7d7a6f0092c64cba66d55695b1 Mon Sep 17 00:00:00 2001 From: reinterpretcat Date: Mon, 25 Mar 2024 21:16:26 +0100 Subject: [PATCH] Update dependencies --- Cargo.toml | 6 +++--- experiments/heuristic-research/Cargo.toml | 4 ++-- rosomaxa/Cargo.toml | 6 +++--- vrp-cli/Cargo.toml | 14 +++++++------- vrp-pragmatic/Cargo.toml | 4 ++-- 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2646035e4..71a659e8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/experiments/heuristic-research/Cargo.toml b/experiments/heuristic-research/Cargo.toml index f51b19443..3af74e2e3 100644 --- a/experiments/heuristic-research/Cargo.toml +++ b/experiments/heuristic-research/Cargo.toml @@ -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" diff --git a/rosomaxa/Cargo.toml b/rosomaxa/Cargo.toml index d8e1f94f4..d9f700408 100644 --- a/rosomaxa/Cargo.toml +++ b/rosomaxa/Cargo.toml @@ -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" diff --git a/vrp-cli/Cargo.toml b/vrp-cli/Cargo.toml index cedd987b5..eda9db588 100644 --- a/vrp-cli/Cargo.toml +++ b/vrp-cli/Cargo.toml @@ -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" diff --git a/vrp-pragmatic/Cargo.toml b/vrp-pragmatic/Cargo.toml index 59641fb43..e792301c2 100644 --- a/vrp-pragmatic/Cargo.toml +++ b/vrp-pragmatic/Cargo.toml @@ -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"] }