Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Nov 5, 2023
1 parent 169adfd commit fc5e0e5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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.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"
2 changes: 1 addition & 1 deletion rosomaxa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
10 changes: 5 additions & 5 deletions vrp-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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"
2 changes: 1 addition & 1 deletion vrp-pragmatic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit fc5e0e5

Please sign in to comment.