From fc5e0e54f4c2be25f22be4c00c2f8c9d213bcd9a Mon Sep 17 00:00:00 2001 From: reinterpretcat Date: Sun, 5 Nov 2023 20:12:27 +0100 Subject: [PATCH] Update dependencies --- Cargo.toml | 6 +++--- experiments/heuristic-research/Cargo.toml | 4 ++-- rosomaxa/Cargo.toml | 2 +- vrp-cli/Cargo.toml | 10 +++++----- vrp-pragmatic/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ffc1e1b64..9e560c236 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,9 +32,9 @@ vrp-pragmatic = { path = "vrp-pragmatic", version = "1.22.1" } vrp-cli = { path = "vrp-cli", version = "1.22.1" } # external dependencies -hashbrown = "0.14.1" -serde = { version = "1.0.189", features = ["derive"] } -serde_json = "1.0.107" +hashbrown = "0.14.2" +serde = { version = "1.0.190", features = ["derive"] } +serde_json = "1.0.108" rand = { version = "0.8.5", features = ["small_rng"] } rayon = "1.8.0" rustc-hash = "1.1.0" diff --git a/experiments/heuristic-research/Cargo.toml b/experiments/heuristic-research/Cargo.toml index a25354361..c59bb396f 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.87" -web-sys = { version = "0.3.64", features = ["HtmlCanvasElement", "console"] } +wasm-bindgen = "0.2.88" +web-sys = { version = "0.3.65", features = ["HtmlCanvasElement", "console"] } lazy_static = "1.4.0" diff --git a/rosomaxa/Cargo.toml b/rosomaxa/Cargo.toml index 93d2eeea0..bf41cd8a2 100644 --- a/rosomaxa/Cargo.toml +++ b/rosomaxa/Cargo.toml @@ -28,4 +28,4 @@ tokio = { version= "1.33.0", features=["sync", "rt"], optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.2.10", features = ["js"] } -js-sys = "0.3.64" +js-sys = "0.3.65" diff --git a/vrp-cli/Cargo.toml b/vrp-cli/Cargo.toml index 12d541478..6f37e8eee 100644 --- a/vrp-cli/Cargo.toml +++ b/vrp-cli/Cargo.toml @@ -34,7 +34,7 @@ serde_json.workspace = true csv = { version = "1.3.0", optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -clap = "4.4.6" +clap = "4.4.7" ctrlc = { version = "3.4.1", features = ["termination"] } num_cpus = "1.16.0" @@ -43,9 +43,9 @@ num_cpus = "1.16.0" pyo3 = { version= "0.20.0", features=["extension-module"], optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] -wasm-bindgen = { version = "0.2.87" } -serde-wasm-bindgen = "0.6.0" -js-sys = "0.3.64" +wasm-bindgen = { version = "0.2.88" } +serde-wasm-bindgen = "0.6.1" +js-sys = "0.3.65" [dev-dependencies] -tempfile = "3.8.0" +tempfile = "3.8.1" diff --git a/vrp-pragmatic/Cargo.toml b/vrp-pragmatic/Cargo.toml index 0a129a994..1b782bd48 100644 --- a/vrp-pragmatic/Cargo.toml +++ b/vrp-pragmatic/Cargo.toml @@ -23,4 +23,4 @@ time = { version = "0.3.30", features = ["parsing", "formatting"] } [dev-dependencies] proptest = "1.3.1" -uuid = { version = "1.4.1", features = ["v4"] } +uuid = { version = "1.5.0", features = ["v4"] }