From 54f6978c25b7e168ded04e720b996625b3654ebd Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Mon, 26 Feb 2024 12:53:40 +0100 Subject: [PATCH] Allow `glam` version `0.25` (#1115) --- CHANGELOG.md | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79c9ee5a17..40a625a443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [PR#1100](https://github.com/EmbarkStudios/rust-gpu/pull/1100) updated toolchain to `nightly-2023-09-30` - [PR#1091](https://github.com/EmbarkStudios/rust-gpu/pull/1091) updated toolchain to `nightly-2023-08-29` - [PR#1085](https://github.com/EmbarkStudios/rust-gpu/pull/1085) updated toolchain to `nightly-2023-07-08` +- [PR#1115](https://github.com/EmbarkStudios/rust-gpu/pull/1115) relaxed `glam` version requirements (from `>=0.22, <=0.24` to `>=0.22, <=0.25`) ### Fixed 🩹 - [PR#1129](https://github.com/EmbarkStudios/rust-gpu/pull/1129) fixed [#1062](https://github.com/EmbarkStudios/rust-gpu/issues/1062) by not flipping the comparison of the rotate amount with zero diff --git a/Cargo.toml b/Cargo.toml index 7749bfe149..d9f811eba3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", versi # External dependencies that need to be mentioned more than once. num-traits = { version = "0.2.15", default-features = false } -glam = { version = ">=0.22, <=0.24", default-features = false } +glam = { version = ">=0.22, <=0.25", default-features = false } # Enable incremental by default in release mode. [profile.release]