From f3ce31767176f01e46744b9a8108d524bb035a7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Aug 2021 23:48:52 +0000 Subject: [PATCH] Update glam requirement from 0.15.1 to 0.17.3 Updates the requirements on [glam](https://github.com/bitshifter/glam-rs) to permit the latest version. - [Release notes](https://github.com/bitshifter/glam-rs/releases) - [Changelog](https://github.com/bitshifter/glam-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/bitshifter/glam-rs/compare/0.15.1...0.17.3) --- updated-dependencies: - dependency-name: glam dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bevy_math/Cargo.toml | 2 +- crates/bevy_reflect/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index 007f5ae039385..b5636faa43438 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -9,5 +9,5 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [dependencies] -glam = { version = "0.15.1", features = ["serde", "bytemuck"] } +glam = { version = "0.17.3", features = ["serde", "bytemuck"] } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index 9756ff113e9be..e13d286cf9d53 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -24,7 +24,7 @@ parking_lot = "0.11.0" thiserror = "1.0" serde = "1" smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true } -glam = { version = "0.15.1", features = ["serde"], optional = true } +glam = { version = "0.17.3", features = ["serde"], optional = true } [dev-dependencies] ron = "0.6.2"