Skip to content

Commit

Permalink
Switch to using the v2 resolver
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tgross35 committed Jul 29, 2024
1 parent 4db3d12 commit 4bfb06f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
resolver = "1"
resolver = "2"
members = [
"compiler/rustc",
"library/std",
Expand Down
2 changes: 1 addition & 1 deletion library/portable-simd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
resolver = "1"
resolver = "2"
members = [
"crates/core_simd",
"crates/std_float",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.0"
edition = "2021"

[workspace]
resolver = "1"
resolver = "2"

[dependencies]
r-efi = "4.1.0"

0 comments on commit 4bfb06f

Please sign in to comment.