From 8c34f00deb20e23902060ad486631828e5ed1bb6 Mon Sep 17 00:00:00 2001 From: Benjamin Brienen Date: Sun, 29 Dec 2024 15:00:19 -0500 Subject: [PATCH] Fix msrvs (#17012) # Objective The rust-versions are out of date. Fixes #17008 ## Solution Update the values Cherry-picked from #17006 in case it is controversial ## Testing Validated locally and in #17006 --------- Co-authored-by: Alice Cecile --- crates/bevy_color/Cargo.toml | 2 +- crates/bevy_ecs/Cargo.toml | 2 +- crates/bevy_input_focus/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bevy_color/Cargo.toml b/crates/bevy_color/Cargo.toml index cb53472950161..ec71e3960d18a 100644 --- a/crates/bevy_color/Cargo.toml +++ b/crates/bevy_color/Cargo.toml @@ -7,7 +7,7 @@ homepage = "https://bevyengine.org" repository = "https://github.com/bevyengine/bevy" license = "MIT OR Apache-2.0" keywords = ["bevy", "color"] -rust-version = "1.82.0" +rust-version = "1.83.0" [dependencies] bevy_math = { path = "../bevy_math", version = "0.15.0-dev", default-features = false, features = [ diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index e32b51a916637..061fa265b6d44 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/bevyengine/bevy" license = "MIT OR Apache-2.0" keywords = ["ecs", "game", "bevy"] categories = ["game-engines", "data-structures"] -rust-version = "1.82.0" +rust-version = "1.83.0" [features] default = ["std", "bevy_reflect", "async_executor"] diff --git a/crates/bevy_input_focus/Cargo.toml b/crates/bevy_input_focus/Cargo.toml index eb5420225fc5a..75c85845b1837 100644 --- a/crates/bevy_input_focus/Cargo.toml +++ b/crates/bevy_input_focus/Cargo.toml @@ -7,7 +7,7 @@ homepage = "https://bevyengine.org" repository = "https://github.com/bevyengine/bevy" license = "MIT OR Apache-2.0" keywords = ["bevy"] -rust-version = "1.76.0" +rust-version = "1.83.0" [dependencies] bevy_app = { path = "../bevy_app", version = "0.15.0-dev", default-features = false } diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index c444004521606..7510f6df926f3 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -7,7 +7,7 @@ homepage = "https://bevyengine.org" repository = "https://github.com/bevyengine/bevy" license = "MIT OR Apache-2.0" keywords = ["bevy"] -rust-version = "1.81.0" +rust-version = "1.83.0" [dependencies] glam = { version = "0.29", default-features = false, features = ["bytemuck"] }