Skip to content

Commit 8dfd076

Browse files
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.
1 parent ed65083 commit 8dfd076

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

crates/bevy_color/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://bevyengine.org"
77
repository = "https://github.com/bevyengine/bevy"
88
license = "MIT OR Apache-2.0"
99
keywords = ["bevy", "color"]
10-
rust-version = "1.76.0"
10+
rust-version = "1.82.0"
1111

1212
[dependencies]
1313
bevy_math = { path = "../bevy_math", version = "0.15.0-dev", default-features = false, features = [

crates/bevy_ecs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/bevyengine/bevy"
88
license = "MIT OR Apache-2.0"
99
keywords = ["ecs", "game", "bevy"]
1010
categories = ["game-engines", "data-structures"]
11-
rust-version = "1.77.0"
11+
rust-version = "1.81.0"
1212

1313
[features]
1414
default = ["bevy_reflect"]

crates/bevy_math/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://bevyengine.org"
77
repository = "https://github.com/bevyengine/bevy"
88
license = "MIT OR Apache-2.0"
99
keywords = ["bevy"]
10-
rust-version = "1.68.2"
10+
rust-version = "1.81.0"
1111

1212
[dependencies]
1313
glam = { version = "0.29", features = ["bytemuck"] }

crates/bevy_ptr/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ homepage = "https://bevyengine.org"
77
repository = "https://github.com/bevyengine/bevy"
88
license = "MIT OR Apache-2.0"
99
keywords = ["bevy", "no_std"]
10+
rust-version = "1.81.0"
1011

1112
[dependencies]
1213

crates/bevy_reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://bevyengine.org"
77
repository = "https://github.com/bevyengine/bevy"
88
license = "MIT OR Apache-2.0"
99
keywords = ["bevy"]
10-
rust-version = "1.76.0"
10+
rust-version = "1.81.0"
1111

1212
[features]
1313
default = ["smallvec", "debug", "alloc"]

0 commit comments

Comments
 (0)