From 7e90184de9b0d090d4ef6ffd105c7844bbb52b4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 07:02:03 +0000 Subject: [PATCH] Update bevy requirement from 0.12 to 0.13 Updates the requirements on [bevy](https://github.com/bevyengine/bevy) to permit the latest version. - [Release notes](https://github.com/bevyengine/bevy/releases) - [Changelog](https://github.com/bevyengine/bevy/blob/main/CHANGELOG.md) - [Commits](https://github.com/bevyengine/bevy/compare/v0.12.0...v0.13.0) --- updated-dependencies: - dependency-name: bevy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 218e51e..87ef454 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ categories = [ exclude = [".github/**/*"] [dependencies] -bevy = { version = "0.12", default-features = false, features = ["bevy_asset"] } +bevy = { version = "0.13", default-features = false, features = ["bevy_asset"] } fluent = "0.16.0" fluent_content = "0.0.5" fluent-langneg = "0.13.0" @@ -36,5 +36,5 @@ uuid = { version = "1.5.0", features = ["serde", "v4", "v5"] } # globset = "0.4.13" [dev-dependencies] -bevy = "0.12" +bevy = "0.13" unic-langid = { version = "0.9.1", features = ["macros"] }