diff --git a/Cargo.lock b/Cargo.lock index bfc1b4a9db..a3f69c00a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1143,7 +1143,7 @@ checksum = "8fce2eeef77fd4a293a54b62aa00ac9daebfbcda4bf8998c5a815635b004aa1c" dependencies = [ "const_panic", "encase_derive", - "glam", + "glam 0.24.2", "thiserror", ] @@ -1504,6 +1504,12 @@ version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945" +[[package]] +name = "glam" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3" + [[package]] name = "glow" version = "0.13.0" @@ -4064,7 +4070,7 @@ dependencies = [ "fern", "flume", "getrandom", - "glam", + "glam 0.25.0", "js-sys", "ktx2", "log", @@ -4098,7 +4104,7 @@ dependencies = [ "core-graphics-types", "d3d12", "env_logger", - "glam", + "glam 0.25.0", "glow", "glutin", "glutin_wgl_sys 0.5.0", diff --git a/Cargo.toml b/Cargo.toml index dd908db6f5..7318369160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ fern = "0.6" flume = "0.11" futures-lite = "2" getrandom = "0.2" -glam = "0.24.2" +glam = "0.25.0" heck = "0.4.0" image = { version = "0.24", default-features = false, features = ["png"] } ktx2 = "0.3" diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index d715bf58d5..c19301c03d 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -169,7 +169,7 @@ features = ["wgsl-in"] [dev-dependencies] cfg-if = "1" env_logger = "0.10" -glam = "0.24.2" # for ray-traced-triangle example +glam = "0.25.0" # for ray-traced-triangle example winit = { version = "0.29.5", features = [ "android-native-activity", ] } # for "halmark" example