From 9ccfede18b109c261c4088a2665a167772e687b1 Mon Sep 17 00:00:00 2001 From: Rain Date: Tue, 28 Jan 2025 08:24:28 +0000 Subject: [PATCH] [meta] update petgraph and fixedbitset --- Cargo.lock | 8 ++++---- guppy/Cargo.toml | 4 ++-- tools/determinator/Cargo.toml | 2 +- workspace-hack/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a3ae0497d8..970ac610f7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1367,9 +1367,9 @@ dependencies = [ [[package]] name = "fixedbitset" -version = "0.4.2" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" +checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" [[package]] name = "fixture-manager" @@ -3255,9 +3255,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "petgraph" -version = "0.6.5" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" dependencies = [ "fixedbitset", "indexmap 2.7.1", diff --git a/guppy/Cargo.toml b/guppy/Cargo.toml index d8866079c21..c2ab6436677 100644 --- a/guppy/Cargo.toml +++ b/guppy/Cargo.toml @@ -35,13 +35,13 @@ cargo_metadata = "0.19.1" cfg-if = "1.0.0" debug-ignore = "1.0.5" guppy-summaries = { version = "0.7.1", path = "../guppy-summaries", optional = true } -fixedbitset = { version = "0.4.2", default-features = false } +fixedbitset = { version = "0.5.7", default-features = false } nested = "0.1.1" indexmap = "2.7.1" itertools = "0.14.0" once_cell = "1.20.2" pathdiff = { version = "0.2.3", features = ["camino"] } -petgraph = { version = "0.6.5", default-features = false } +petgraph = { version = "0.7.1", default-features = false } proptest = { version = "1.6.0", optional = true } proptest-derive = { version = "0.5.1", optional = true } rayon = { version = "1.10.0", optional = true } diff --git a/tools/determinator/Cargo.toml b/tools/determinator/Cargo.toml index e717e60a9b5..d3f7f3af807 100644 --- a/tools/determinator/Cargo.toml +++ b/tools/determinator/Cargo.toml @@ -33,7 +33,7 @@ guppy = { version = "0.17.12", path = "../../guppy", features = [ "summaries", ] } once_cell = "1.20.2" -petgraph = { version = "0.6.5", default-features = false, features = [ +petgraph = { version = "0.7.1", default-features = false, features = [ "graphmap", ] } rayon = "1.10.0" diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index aebdc3d0caf..31d81eae876 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -32,7 +32,7 @@ miette = { version = "7.4.0", features = ["fancy"] } num-traits = { version = "0.2.19" } once_cell = { version = "1.20.2" } owo-colors = { version = "3.5.0", default-features = false, features = ["supports-colors"] } -petgraph = { version = "0.6.5", default-features = false, features = ["graphmap"] } +petgraph = { version = "0.7.1", default-features = false, features = ["graphmap"] } regex = { version = "1.10.5", default-features = false, features = ["perf", "std"] } regex-automata = { version = "0.4.5", default-features = false, features = ["dfa", "hybrid", "meta", "nfa", "perf", "unicode"] } regex-syntax = { version = "0.8.5" }