diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-08-24 22:14:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-24 22:14:13 +0200 |
| commit | 2a7f2da422d5dfaca89a9e8c3b8c5dcf22a38e9a (patch) | |
| tree | 301a239c0e85b4aff04474802d2f54d74c8cad83 | |
| parent | c0bedb9e5e93298a80d988cb1993bb51a3aaec11 (diff) | |
| parent | a5f6c15571216703bf94e5a657d96bc9df54fb17 (diff) | |
| download | rust-2a7f2da422d5dfaca89a9e8c3b8c5dcf22a38e9a.tar.gz rust-2a7f2da422d5dfaca89a9e8c3b8c5dcf22a38e9a.zip | |
Rollup merge of #129290 - tgross35:pin-cc, r=Mark-Simulacrum
Pin `cc` to 1.0.105 `cc` 1.0.106 removes support for Visual Studio 12. Pin to 1.0.105 so we don't drop support yet. Fixes: https://github.com/rust-lang/rust/pull/128722#issuecomment-2297605573
| -rw-r--r-- | Cargo.lock | 7 | ||||
| -rw-r--r-- | compiler/rustc_codegen_ssa/Cargo.toml | 2 | ||||
| -rw-r--r-- | compiler/rustc_llvm/Cargo.toml | 2 |
3 files changed, 4 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock index f2e2baea8e4..e3ab150b320 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -410,12 +410,9 @@ version = "0.1.0" [[package]] name = "cc" -version = "1.1.13" +version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72db2f7947ecee9b03b510377e8bb9077afa27176fdbff55c51027e976fdcc48" -dependencies = [ - "shlex", -] +checksum = "5208975e568d83b6b05cc0a063c8e7e9acc2b43bee6da15616a5b73e109d7437" [[package]] name = "cfg-if" diff --git a/compiler/rustc_codegen_ssa/Cargo.toml b/compiler/rustc_codegen_ssa/Cargo.toml index 56b75f9b329..e78039bafd8 100644 --- a/compiler/rustc_codegen_ssa/Cargo.toml +++ b/compiler/rustc_codegen_ssa/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" ar_archive_writer = "0.4.2" arrayvec = { version = "0.7", default-features = false } bitflags = "2.4.1" -cc = "1.0.90" +cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013 either = "1.5.0" itertools = "0.12" jobserver = "0.1.28" diff --git a/compiler/rustc_llvm/Cargo.toml b/compiler/rustc_llvm/Cargo.toml index 83fda7ef07c..1f74aaf9965 100644 --- a/compiler/rustc_llvm/Cargo.toml +++ b/compiler/rustc_llvm/Cargo.toml @@ -10,5 +10,5 @@ libc = "0.2.73" [build-dependencies] # tidy-alphabetical-start -cc = "1.0.97" +cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013 # tidy-alphabetical-end |
