mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 12:13:25 +00:00
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:
parent
ed6508363e
commit
8dfd076982
5 changed files with 5 additions and 4 deletions
|
@ -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 = [
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue