diff options
| author | Trevor Gross <tmgross@umich.edu> | 2025-04-22 07:46:09 +0000 |
|---|---|---|
| committer | Trevor Gross <t.gross35@gmail.com> | 2025-04-22 04:00:49 -0400 |
| commit | d30dde73b35da060279ca40409975d50eba1139f (patch) | |
| tree | 8366203d77382a7633458c80368610f4e2e84672 | |
| parent | aec649faae092a09b17991499f142b50f348c91b (diff) | |
| download | rust-d30dde73b35da060279ca40409975d50eba1139f.tar.gz rust-d30dde73b35da060279ca40409975d50eba1139f.zip | |
fix: Switch to resolver v2
The published crates fail to build with an edition less than 2024 because they are packaged with `resolver = "3"`, which is a 2024-only option. Revert back to resolver v2 to drop this requirement. Fixes: https://github.com/rust-lang/compiler-builtins/issues/883
| -rw-r--r-- | library/compiler-builtins/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/compiler-builtins/Cargo.toml b/library/compiler-builtins/Cargo.toml index 75bb81ec187..b39ec8a25da 100644 --- a/library/compiler-builtins/Cargo.toml +++ b/library/compiler-builtins/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -resolver = "3" +resolver = "2" members = [ "builtins-test", "compiler-builtins", |
