Update glam (#540)

This commit is contained in:
XAMPPRocky 2021-03-26 09:05:33 +01:00 committed by GitHub
parent c3757cb9c7
commit 062eb58431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -1098,8 +1098,8 @@ dependencies = [
[[package]]
name = "glam"
version = "0.13.0"
source = "git+https://github.com/bitshifter/glam-rs.git?rev=b3e94fb#b3e94fbcfae1e2c8ffa912a7865b49ff8cb8b1ef"
version = "0.13.1"
source = "git+https://github.com/bitshifter/glam-rs.git?rev=52c2e4a#52c2e4a41bbe8b5aef2c41283ee860f9cd549750"
dependencies = [
"num-traits",
"spirv-std",

View File

@ -25,7 +25,7 @@ codegen-units = 16
[patch.crates-io]
spirv-std = { path = "./crates/spirv-std" }
spirv-std-macros = { path = "./crates/spirv-std-macros" }
glam = { git = "https://github.com/bitshifter/glam-rs.git", rev ="b3e94fb" }
glam = { git = "https://github.com/bitshifter/glam-rs.git", rev ="52c2e4a" }
# TODO: Remove once next version is released - needed to include these two PRs:
# * Manishearth/compiletest-rs#240 (for handling SPIR-V extension across platforms)
# * Manishearth/compiletest-rs#241 (for the `$TEST_BUILD_DIR` path normalization)

View File

@ -12,6 +12,6 @@ spirv-std = { path = "../../crates/spirv-std", features = ["const-generics"] }
[dependencies.glam]
git = "https://github.com/bitshifter/glam-rs.git"
rev = "b3e94fb"
rev = "52c2e4a"
default-features = false
features = ["libm", "scalar-math"]