From 2a7b24b70db63a4153d71b052c51f6a5cb335bca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 May 2025 18:00:29 +0000 Subject: [PATCH] Update petgraph requirement from 0.7 to 0.8 Updates the requirements on [petgraph](https://github.com/petgraph/petgraph) to permit the latest version. - [Release notes](https://github.com/petgraph/petgraph/releases) - [Changelog](https://github.com/petgraph/petgraph/blob/master/CHANGELOG.md) - [Commits](https://github.com/petgraph/petgraph/compare/petgraph@v0.7.0...petgraph@v0.8.1) --- updated-dependencies: - dependency-name: petgraph dependency-version: 0.8.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bevy_animation/Cargo.toml | 2 +- crates/bevy_reflect/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index 11e819806c506..1dd16ae2951f3 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -31,7 +31,7 @@ bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-fea ] } # other -petgraph = { version = "0.7", features = ["serde-1"] } +petgraph = { version = "0.8", features = ["serde-1"] } ron = "0.8" serde = "1" blake3 = { version = "1.0" } diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index bb72226ab85a7..fa3d40746468b 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -106,7 +106,7 @@ smallvec = { version = "1.11", default-features = false, optional = true } glam = { version = "0.29.3", default-features = false, features = [ "serde", ], optional = true } -petgraph = { version = "0.7", features = ["serde-1"], optional = true } +petgraph = { version = "0.8", features = ["serde-1"], optional = true } smol_str = { version = "0.2.0", default-features = false, features = [ "serde", ], optional = true }