From d9fd9a0f62a9ea81c28c66784166553773b0f20a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 06:29:18 +0000 Subject: [PATCH] Update glam requirement from 0.29 to 0.30 Updates the requirements on [glam](https://github.com/bitshifter/glam-rs) to permit the latest version. - [Changelog](https://github.com/bitshifter/glam-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitshifter/glam-rs/compare/0.29.0...0.30.0) --- updated-dependencies: - dependency-name: glam dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- benches/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 4 ++-- crates/bevy_mikktspace/Cargo.toml | 2 +- crates/bevy_reflect/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/benches/Cargo.toml b/benches/Cargo.toml index f5faeec237fc3..34d5badc94868 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -29,7 +29,7 @@ bevy_platform_support = { path = "../crates/bevy_platform_support", default-feat ] } # Other crates -glam = "0.29" +glam = "0.30" rand = "0.8" rand_chacha = "0.3" diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index d7e4f83ce6b22..c3f87e4976478 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] rust-version = "1.85.0" [dependencies] -glam = { version = "0.29", default-features = false, features = ["bytemuck"] } +glam = { version = "0.30", default-features = false, features = ["bytemuck"] } thiserror = { version = "2", default-features = false } derive_more = { version = "1", default-features = false, features = [ "from", @@ -37,7 +37,7 @@ rand = "0.8" rand_chacha = "0.3" # Enable the approx feature when testing. bevy_math = { path = ".", default-features = false, features = ["approx"] } -glam = { version = "0.29", default-features = false, features = ["approx"] } +glam = { version = "0.30", default-features = false, features = ["approx"] } [features] default = ["std", "rand", "curve"] diff --git a/crates/bevy_mikktspace/Cargo.toml b/crates/bevy_mikktspace/Cargo.toml index 08eca4cc6977e..cc3a29eb364d9 100644 --- a/crates/bevy_mikktspace/Cargo.toml +++ b/crates/bevy_mikktspace/Cargo.toml @@ -22,7 +22,7 @@ std = ["glam/std"] libm = ["glam/libm", "dep:libm"] [dependencies] -glam = { version = "0.29.0", default-features = false } +glam = { version = "0.30.0", default-features = false } libm = { version = "0.2", default-features = false, optional = true } [[example]] diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index a1c5f4fd6e630..5844b889748bb 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -98,7 +98,7 @@ derive_more = { version = "1", default-features = false, features = ["from"] } serde = { version = "1", default-features = false, features = ["alloc"] } assert_type_match = "0.1.1" smallvec = { version = "1.11", default-features = false, optional = true } -glam = { version = "0.29", default-features = false, features = [ +glam = { version = "0.30", default-features = false, features = [ "serde", ], optional = true } petgraph = { version = "0.6", features = ["serde-1"], optional = true }