Apply suggestions from code review

This commit is contained in:
Eduard-Mihai Burtescu 2023-05-30 10:27:48 +03:00 committed by Eduard-Mihai Burtescu
parent 51888c78a7
commit a686676e44
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed 🛠
- [PR#1038](https://github.com/EmbarkStudios/rust-gpu/pull/1038) relaxed glam version requirements (>= 0.23, < 0.25).
- [PR#1038](https://github.com/EmbarkStudios/rust-gpu/pull/1038) relaxed `glam` version requirements (from only `0.22`, to `>=0.22, <=0.24`)
### Removed 🔥
- [PR#1052](https://github.com/EmbarkStudios/rust-gpu/pull/1052) removed `--no-spirt`,

View File

@ -12,7 +12,7 @@ spirv-std-types.workspace = true
spirv-std-macros.workspace = true
bitflags = "1.2.1"
num-traits = { version = "0.2.15", default-features = false, features = ["libm"] }
glam = { version = ">=0.22, <0.25", default-features = false, features = ["libm"] }
glam = { version = ">=0.22, <=0.24", default-features = false, features = ["libm"] }
[features]
default = []