From 048e6e2561a77075b98abdedc8ede9f47213e74a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Nov 2020 22:25:42 -0800 Subject: [PATCH] Update glam requirement from 0.10.0 to 0.11.0 (#961) 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.10.0...0.11.0) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- 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 8534d5b5cb..05f9d078a1 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.10.0", features = ["serde"] } +glam = { version = "0.11.0", features = ["serde"] } bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index 60e7dc512b..e9445ef892 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -30,7 +30,7 @@ parking_lot = "0.11.0" thiserror = "1.0" serde = "1" smallvec = { version = "1.4", features = ["serde"], optional = true } -glam = { version = "0.10.0", features = ["serde"], optional = true } +glam = { version = "0.11.0", features = ["serde"], optional = true } [dev-dependencies] ron = "0.6.2"