From 7d62ad7a66ebc7871ca621869c5dc3998651e51a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 23:17:18 +0000 Subject: [PATCH] build(deps): bump petgraph from 0.6.6 to 0.7.0 Bumps [petgraph](https://github.com/petgraph/petgraph) from 0.6.6 to 0.7.0. - [Changelog](https://github.com/petgraph/petgraph/blob/master/RELEASES.rst) - [Commits](https://github.com/petgraph/petgraph/compare/petgraph@v0.6.6...petgraph@v0.7.0) --- updated-dependencies: - dependency-name: petgraph dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 ++++++++++++++---- aoc2023/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4048f91..04ec020 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -71,7 +71,7 @@ dependencies = [ "num", "num-integer", "pathfinding", - "petgraph", + "petgraph 0.7.0", "rayon", "rustc-hash 2.1.0", "rustworkx-core", @@ -573,9 +573,19 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" [[package]] name = "petgraph" -version = "0.6.6" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c94eb96835f05ec51384814c9b2daef83f68486f67a0e2e9680e0f698dca808e" +checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +dependencies = [ + "fixedbitset 0.4.2", + "indexmap", +] + +[[package]] +name = "petgraph" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2b1374ec32450264534c67d1ccb5ca09818c4db8fd87cf97478d0df2fa44c65" dependencies = [ "fixedbitset 0.5.7", "indexmap", @@ -754,7 +764,7 @@ dependencies = [ "indexmap", "ndarray", "num-traits", - "petgraph", + "petgraph 0.6.5", "priority-queue", "rand", "rand_pcg", diff --git a/aoc2023/Cargo.toml b/aoc2023/Cargo.toml index 9555ba8..1c78fef 100644 --- a/aoc2023/Cargo.toml +++ b/aoc2023/Cargo.toml @@ -21,7 +21,7 @@ itertools = { version = "0.13" } num = { version = "0.4" } num-integer = { version = "0.1" } pathfinding = { version = "4.13" } -petgraph = { version = "0.6" } +petgraph = { version = "0.7" } rayon = { version = "1.8" } rustc-hash = { version = "2.0" } rustworkx-core = { version = "0.15" }