From 8dfd076982deb0080453ca1a9b17b015568cb2fe Mon Sep 17 00:00:00 2001 From: Benjamin Brienen Date: Sun, 17 Nov 2024 10:38:13 +0100 Subject: [PATCH] Fix MSRVs for standalone crates (#16333) # Objective MSRV in the standalone crates should be accurate ## Solution Determine the msrv of each crate and set it ## Testing Adding better msrv checks to the CI is a next-step. --- crates/bevy_color/Cargo.toml | 2 +- crates/bevy_ecs/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 2 +- crates/bevy_ptr/Cargo.toml | 1 + crates/bevy_reflect/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/crates/bevy_color/Cargo.toml b/crates/bevy_color/Cargo.toml index 7c8bde7aea..3c1f0d9c33 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.76.0" +rust-version = "1.82.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 2769500584..3934a2221c 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.77.0" +rust-version = "1.81.0" [features] default = ["bevy_reflect"] diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index 74ed8dee85..ec2287e698 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.68.2" +rust-version = "1.81.0" [dependencies] glam = { version = "0.29", features = ["bytemuck"] } diff --git a/crates/bevy_ptr/Cargo.toml b/crates/bevy_ptr/Cargo.toml index aa95d6561e..0aea96ebd0 100644 --- a/crates/bevy_ptr/Cargo.toml +++ b/crates/bevy_ptr/Cargo.toml @@ -7,6 +7,7 @@ homepage = "https://bevyengine.org" repository = "https://github.com/bevyengine/bevy" license = "MIT OR Apache-2.0" keywords = ["bevy", "no_std"] +rust-version = "1.81.0" [dependencies] diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index 844c40c685..efc3e2d34f 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/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.81.0" [features] default = ["smallvec", "debug", "alloc"]