diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 3f547d80d984b..6e0ad82ece8ae 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -29,7 +29,7 @@ bevy_platform = { path = "../crates/bevy_platform", default-features = false, fe ] } # 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 7aae1ec74be45..96cfd01b8a120 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.3", default-features = false, features = ["bytemuck"] } +glam = { version = "0.30.3", 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.3", default-features = false, features = ["approx"] } +glam = { version = "0.30.3", 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 fbca931fe2a42..c5926048c0c1e 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.3", default-features = false } +glam = { version = "0.30.3", 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 bb72226ab85a7..1c496bbbc98bd 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -103,7 +103,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.3", default-features = false, features = [ +glam = { version = "0.30.3", default-features = false, features = [ "serde", ], optional = true } petgraph = { version = "0.7", features = ["serde-1"], optional = true }