From 54831eb72728db89e4927d7256e427a74ac64beb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 17:43:49 +0000 Subject: [PATCH] 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 | 28 ++++++++++++++++++++++------ lib/app/Cargo.toml | 2 +- lib/hir/Cargo.toml | 2 +- 3 files changed, 24 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c8c74faa4..c243345a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -92,7 +92,7 @@ dependencies = [ "mir", "mir-fmm", "parse", - "petgraph", + "petgraph 0.7.0", "regex", "serde", "serde_json", @@ -347,6 +347,12 @@ checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" name = "fibonacci" version = "0.1.0" +[[package]] +name = "fixedbitset" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" + [[package]] name = "fixedbitset" version = "0.5.7" @@ -361,7 +367,7 @@ dependencies = [ "fnv", "indexmap 1.9.3", "once_cell", - "petgraph", + "petgraph 0.6.5", "regex", ] @@ -543,7 +549,7 @@ name = "hir" version = "0.1.0" dependencies = [ "fnv", - "petgraph", + "petgraph 0.7.0", "plist", "position", "pretty_assertions", @@ -1085,11 +1091,21 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "petgraph" -version = "0.6.6" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +dependencies = [ + "fixedbitset 0.4.2", + "indexmap 2.5.0", +] + +[[package]] +name = "petgraph" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c94eb96835f05ec51384814c9b2daef83f68486f67a0e2e9680e0f698dca808e" +checksum = "e2b1374ec32450264534c67d1ccb5ca09818c4db8fd87cf97478d0df2fa44c65" dependencies = [ - "fixedbitset", + "fixedbitset 0.5.7", "indexmap 2.5.0", ] diff --git a/lib/app/Cargo.toml b/lib/app/Cargo.toml index 4c39cfa52..870923986 100644 --- a/lib/app/Cargo.toml +++ b/lib/app/Cargo.toml @@ -19,7 +19,7 @@ interface = { path = "../interface" } mir = { path = "../mir" } mir-fmm = { path = "../mir-fmm" } parse = { path = "../parse" } -petgraph = "0.6" +petgraph = "0.7" regex = "1" serde = { version = "1", features = ["derive", "rc"] } serde_json = "1" diff --git a/lib/hir/Cargo.toml b/lib/hir/Cargo.toml index 6157ab070..6794f5be4 100644 --- a/lib/hir/Cargo.toml +++ b/lib/hir/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] fnv = "1" -petgraph = "0.6" +petgraph = "0.7" plist = { git = "https://github.com/raviqqe/plist-rs", branch = "main" } position = { path = "../position" } serde = { version = "1", features = ["derive", "rc"] }