Skip to content

Commit ebe1117

Browse files
authored
MSRV CI job fail to use cargo rust-version dependency resolution (#23881)
# Objective - CI fails because of a wrong MSRV issue ## Solution - ~`cargo metadata` creates a lock file with the current stable version, which is then used by the MSRV~ turns out `cargo metadata --no-deps` doesn't lock the lock file unlike `cargo metadata` - ~clear the stable lock file~ - also update the resolver to v3: https://doc.rust-lang.org/edition-guide/rust-2024/cargo-resolver.html ## Testing - CI
1 parent d4379d4 commit ebe1117

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ documentation = "https://docs.rs/bevy"
1313
rust-version = "1.92.0"
1414

1515
[workspace]
16-
resolver = "2"
16+
resolver = "3"
1717
members = [
1818
# All of Bevy's official crates are within the `crates` folder!
1919
"crates/*",

0 commit comments

Comments
 (0)