From 0aa9b1d64a15c1b3bacc57e2f38cb41222e15100 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Sep 2022 13:01:45 +0000 Subject: [PATCH] Update ron requirement from 0.7.0 to 0.8.0 Updates the requirements on [ron](https://github.com/ron-rs/ron) to permit the latest version. - [Release notes](https://github.com/ron-rs/ron/releases) - [Changelog](https://github.com/ron-rs/ron/blob/master/CHANGELOG.md) - [Commits](https://github.com/ron-rs/ron/compare/v0.7.0...v0.8.0) --- updated-dependencies: - dependency-name: ron dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/bevy_app/Cargo.toml | 2 +- crates/bevy_reflect/Cargo.toml | 5 +++-- crates/bevy_scene/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f2157f120d846..226d640bcdff7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -127,7 +127,7 @@ bevy_internal = { path = "crates/bevy_internal", version = "0.9.0-dev", default- [dev-dependencies] anyhow = "1.0.4" rand = "0.8.0" -ron = "0.7.0" +ron = "0.8.0" serde = { version = "1", features = ["derive"] } bytemuck = "1.7" # Needed to poll Task examples diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 604d776ee81a4..e36a744c945cd 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -24,7 +24,7 @@ bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" } # other serde = { version = "1.0", features = ["derive"], optional = true } -ron = { version = "0.7.0", optional = true } +ron = { version = "0.8.0", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index 9cd65e2ca91ac..2495e45b5180b 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -10,10 +10,11 @@ keywords = ["bevy"] readme = "README.md" [features] -bevy = ["glam", "smallvec"] +bevy = ["glam", "smallvec", "bevy_math"] [dependencies] # bevy +bevy_math = { path = "../bevy_math", version = "0.9.0-dev", optional = true } bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.9.0-dev" } bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } bevy_ptr = { path = "../bevy_ptr", version = "0.9.0-dev" } @@ -29,4 +30,4 @@ smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], o glam = { version = "0.21", features = ["serde"], optional = true } [dev-dependencies] -ron = "0.7.0" +ron = "0.8.0" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index bfda2e6fc8647..ded4ad5fd1e96 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -22,7 +22,7 @@ bevy_render = { path = "../bevy_render", version = "0.9.0-dev" } # other serde = { version = "1.0", features = ["derive"] } -ron = "0.7.0" +ron = "0.8.0" uuid = { version = "1.1", features = ["v4", "serde"] } anyhow = "1.0.4" thiserror = "1.0"