Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Jan 12, 2025
1 parent f47b809 commit 0c1e933
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ vrp-pragmatic = { path = "vrp-pragmatic", version = "1.25.0" }
vrp-cli = { path = "vrp-cli", version = "1.25.0" }

# external dependencies
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.10.0"
rustc-hash = "2.0.0"
rustc-hash = "2.1.0"
paste = "1.0.15"
lazy_static = "1.5.0"

Expand Down
6 changes: 3 additions & 3 deletions experiments/heuristic-research/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ lazy_static.workspace = true

plotters = "0.3.7"
plotters-canvas = "0.3.0"
itertools = "0.13.0"
wasm-bindgen = "0.2.95"
web-sys = { version = "0.3.72", features = ["HtmlCanvasElement", "console"] }
itertools = "0.14.0"
wasm-bindgen = "0.2.99"
web-sys = { version = "0.3.76", features = ["HtmlCanvasElement", "console"] }
2 changes: 1 addition & 1 deletion rosomaxa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ num_cpus = "1.16.0"

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2.15", features = ["js"] }
js-sys = "0.3.72"
js-sys = "0.3.76"
10 changes: 5 additions & 5 deletions vrp-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ serde_json.workspace = true
csv = { version = "1.3.1", optional = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
clap = "4.5.20"
clap = "4.5.26"
ctrlc = { version = "3.4.5", 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.22.6", features=["extension-module"], optional = true }
pyo3 = { version= "0.23.4", features=["extension-module"], optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { version = "0.2.95" }
wasm-bindgen = { version = "0.2.99" }
serde-wasm-bindgen = "0.6.5"
js-sys = "0.3.72"
js-sys = "0.3.76"

[dev-dependencies]
tempfile = "3.14.0"
tempfile = "3.15.0"
2 changes: 1 addition & 1 deletion vrp-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ paste.workspace = true
lazy_static.workspace = true

nohash-hasher = "0.2.0"
tinyvec = { version = "1.8.0", features = ["alloc"] }
tinyvec = { version = "1.8.1", features = ["alloc"] }
6 changes: 3 additions & 3 deletions vrp-pragmatic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ serde.workspace = true
serde_json.workspace = true
rand.workspace = true

time = { version = "0.3.36", features = ["parsing", "formatting"] }
time = { version = "0.3.37", features = ["parsing", "formatting"] }
paste = "1.0.15"

[dev-dependencies]
criterion.workspace = true

proptest = "1.5.0"
uuid = { version = "1.11.0", features = ["v4"] }
proptest = "1.6.0"
uuid = { version = "1.11.1", features = ["v4"] }

[[bench]]
name = "pragmatic_simple"
Expand Down

0 comments on commit 0c1e933

Please sign in to comment.