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.
This commit is contained in:
Benjamin Brienen 2024-11-17 10:38:13 +01:00 committed by GitHub
parent ed6508363e
commit 8dfd076982
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 4 deletions

View file

@ -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 = [

View file

@ -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"]

View file

@ -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"] }

View file

@ -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]

View file

@ -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"]