Skip to content

Commit a5f6c15

Browse files
committed
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: #128722 (comment)
1 parent 79611d9 commit a5f6c15

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

Cargo.lock

+2-5
Original file line numberDiff line numberDiff line change
@@ -420,12 +420,9 @@ version = "0.1.0"
420420

421421
[[package]]
422422
name = "cc"
423-
version = "1.1.13"
423+
version = "1.0.105"
424424
source = "registry+https://github.com/rust-lang/crates.io-index"
425-
checksum = "72db2f7947ecee9b03b510377e8bb9077afa27176fdbff55c51027e976fdcc48"
426-
dependencies = [
427-
"shlex",
428-
]
425+
checksum = "5208975e568d83b6b05cc0a063c8e7e9acc2b43bee6da15616a5b73e109d7437"
429426

430427
[[package]]
431428
name = "cfg-if"

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
ar_archive_writer = "0.4.0"
99
arrayvec = { version = "0.7", default-features = false }
1010
bitflags = "2.4.1"
11-
cc = "1.0.90"
11+
cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013
1212
either = "1.5.0"
1313
itertools = "0.12"
1414
jobserver = "0.1.28"

compiler/rustc_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ libc = "0.2.73"
1010

1111
[build-dependencies]
1212
# tidy-alphabetical-start
13-
cc = "1.0.97"
13+
cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013
1414
# tidy-alphabetical-end

0 commit comments

Comments
 (0)