diff --git a/Cargo.lock b/Cargo.lock index 188f00e9eb..ec4b5905a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -916,7 +916,10 @@ dependencies = [ [[package]] name = "glam" version = "0.9.5" -source = "git+https://github.com/EmbarkStudios/glam-rs?rev=262e4e1b86e54dbd7772a9c1f342abd30a438282#262e4e1b86e54dbd7772a9c1f342abd30a438282" +source = "git+https://github.com/EmbarkStudios/glam-rs?rev=d55ff75e91aab01c4fd9808e3ca9c079dfa7315c#d55ff75e91aab01c4fd9808e3ca9c079dfa7315c" +dependencies = [ + "version_check", +] [[package]] name = "heck" diff --git a/Cargo.toml b/Cargo.toml index 398ce9f63e..94a8527db5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,4 +14,4 @@ members = [ [patch.crates-io] # https://github.com/bitshifter/glam-rs/pull/85 -glam = { git = "https://github.com/EmbarkStudios/glam-rs", rev = "262e4e1b86e54dbd7772a9c1f342abd30a438282" } +glam = { git = "https://github.com/EmbarkStudios/glam-rs", rev = "d55ff75e91aab01c4fd9808e3ca9c079dfa7315c" } diff --git a/examples/runners/cpu/Cargo.toml b/examples/runners/cpu/Cargo.toml index 68545e5932..b8f50723a4 100644 --- a/examples/runners/cpu/Cargo.toml +++ b/examples/runners/cpu/Cargo.toml @@ -10,7 +10,7 @@ publish = false minifb = "0.19.1" # bring in the shader as natively compiled code sky-shader = { path = "../../shaders/sky-shader" } -glam = { version = "0.9", default_features = false } +glam = "0.9" # for parallelism, not really needed though rayon = "1.5"