From 5d1f3fe700dce55c261880a4731bb8e864e3bb8c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Jun 2021 05:46:46 +0000 Subject: [PATCH] Update glam requirement from 0.15.1 to 0.16.0 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.16.0) --- 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 81823421b4c5f..fae79541195fd 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -13,5 +13,5 @@ license = "MIT" keywords = ["bevy"] [dependencies] -glam = { version = "0.15.1", features = ["serde", "bytemuck"] } +glam = { version = "0.16.0", 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 9b6e68288e277..8eb45acb8faea 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -28,7 +28,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.16.0", features = ["serde"], optional = true } [dev-dependencies] ron = "0.6.2"