Skip to content

Commit c1b45ea

Browse files
committed
Switch to using the v2 resolver in the workspace
Pinning the resolver to v1 was done in 5abff37 ("Explicit set workspace.resolver ...") in order to suppress warnings. Since there is no specific reason not to use the new resolver and since it fixes issues, change to `resolver = "2"`. Fixes: rust-lang#128358
1 parent 5367673 commit c1b45ea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
resolver = "1"
2+
resolver = "2"
33
members = [
44
"compiler/rustc",
55
"library/std",

library/portable-simd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
resolver = "1"
2+
resolver = "2"
33
members = [
44
"crates/core_simd",
55
"crates/std_float",

src/ci/docker/host-x86_64/test-various/uefi_qemu_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.0"
44
edition = "2021"
55

66
[workspace]
7-
resolver = "1"
7+
resolver = "2"
88

99
[dependencies]
1010
r-efi = "4.1.0"

0 commit comments

Comments
 (0)