From a45fbc943e67f6e63ebf5749b87544ae1d51b377 Mon Sep 17 00:00:00 2001 From: Sylvester Hesp Date: Wed, 26 Oct 2022 13:10:14 +0200 Subject: [PATCH] Update glam to 0.22 because of `remove_attr` --- Cargo.lock | 4 ++-- crates/spirv-std/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d7a4d631d2..36b7e8801b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -944,9 +944,9 @@ dependencies = [ [[package]] name = "glam" -version = "0.20.2" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4fa84eead97d5412b2a20aed4d66612a97a9e41e08eababdb9ae2bf88667490" +checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774" dependencies = [ "num-traits", ] diff --git a/crates/spirv-std/Cargo.toml b/crates/spirv-std/Cargo.toml index ed0ff03827..f05b918759 100644 --- a/crates/spirv-std/Cargo.toml +++ b/crates/spirv-std/Cargo.toml @@ -12,7 +12,7 @@ bitflags = "1.2.1" num-traits = { version = "0.2.14", default-features = false, features = ["libm"] } spirv-std-types = { path = "./shared", version = "0.4.0-alpha.15" } spirv-std-macros = { path = "./macros", version = "0.4.0-alpha.13" } -glam = { version = ">=0.17, <=0.21", default-features = false, features = ["libm"], optional = true } +glam = { version = "=0.22", default-features = false, features = ["libm"], optional = true } [features] default = []