diff options
| author | Chris Denton <chris@chrisdenton.dev> | 2025-01-03 11:51:13 +0000 |
|---|---|---|
| committer | Chris Denton <chris@chrisdenton.dev> | 2025-01-03 11:51:13 +0000 |
| commit | cfe61320b85a54d38203c69bbb340e3f81b78ede (patch) | |
| tree | b049cd8195e22f4ecebd2e1d24b0cad81c36e2fb | |
| parent | ac00fe89a121e9ca5e59c093c7c02aa296e55ece (diff) | |
| download | rust-cfe61320b85a54d38203c69bbb340e3f81b78ede.tar.gz rust-cfe61320b85a54d38203c69bbb340e3f81b78ede.zip | |
Bump cc in the compiler
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | compiler/rustc_codegen_ssa/Cargo.toml | 2 | ||||
| -rw-r--r-- | compiler/rustc_llvm/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 7d22abc8611..a1365c2d202 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -419,9 +419,9 @@ version = "0.1.0" [[package]] name = "cc" -version = "1.2.6" +version = "1.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333" +checksum = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7" dependencies = [ "shlex", ] diff --git a/compiler/rustc_codegen_ssa/Cargo.toml b/compiler/rustc_codegen_ssa/Cargo.toml index f0456e62442..3254b5d38e7 100644 --- a/compiler/rustc_codegen_ssa/Cargo.toml +++ b/compiler/rustc_codegen_ssa/Cargo.toml @@ -10,7 +10,7 @@ arrayvec = { version = "0.7", default-features = false } bitflags = "2.4.1" # Pinned so `cargo update` bumps don't cause breakage. Please also update the # `cc` in `rustc_llvm` if you update the `cc` here. -cc = "=1.2.6" +cc = "=1.2.7" either = "1.5.0" itertools = "0.12" pathdiff = "0.2.0" diff --git a/compiler/rustc_llvm/Cargo.toml b/compiler/rustc_llvm/Cargo.toml index b2a14a0022e..7c402310436 100644 --- a/compiler/rustc_llvm/Cargo.toml +++ b/compiler/rustc_llvm/Cargo.toml @@ -12,5 +12,5 @@ libc = "0.2.73" # tidy-alphabetical-start # Pinned so `cargo update` bumps don't cause breakage. Please also update the # pinned `cc` in `rustc_codegen_ssa` if you update `cc` here. -cc = "=1.2.6" +cc = "=1.2.7" # tidy-alphabetical-end |
