diff options
| author | bors <bors@rust-lang.org> | 2024-09-19 09:20:08 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-09-19 09:20:08 +0000 |
| commit | b0af276da341bcd3fbfe71871aeacc8650f344ed (patch) | |
| tree | 622f25ec16822f2cadd37d24817ec63217849701 /src/bootstrap | |
| parent | b7b9453ea7354ee39b15390ffd0b4f9e2000076b (diff) | |
| parent | ed2e0abc514925f62327ce14b47966ab8c2355ec (diff) | |
| download | rust-b0af276da341bcd3fbfe71871aeacc8650f344ed.tar.gz rust-b0af276da341bcd3fbfe71871aeacc8650f344ed.zip | |
Auto merge of #130406 - arttet:master, r=onur-ozkan
Bump cc dependency * The [issue](https://github.com/rust-lang/rust/issues/130231) was fixed in the [PR](https://github.com/rust-lang/cc-rs/pull/1207) * The build artifacts of arm64e-apple-darwin can be found [here](https://github.com/arttet/rust-compiler-builder/actions/runs/10902308425)
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/Cargo.lock | 13 | ||||
| -rw-r--r-- | src/bootstrap/Cargo.toml | 2 |
2 files changed, 12 insertions, 3 deletions
diff --git a/src/bootstrap/Cargo.lock b/src/bootstrap/Cargo.lock index 357c6175152..952db063636 100644 --- a/src/bootstrap/Cargo.lock +++ b/src/bootstrap/Cargo.lock @@ -84,9 +84,12 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.97" +version = "1.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4" +checksum = "2d74707dde2ba56f86ae90effb3b43ddd369504387e718014de010cec7959800" +dependencies = [ + "shlex", +] [[package]] name = "cfg-if" @@ -537,6 +540,12 @@ dependencies = [ ] [[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] name = "syn" version = "2.0.75" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/src/bootstrap/Cargo.toml b/src/bootstrap/Cargo.toml index 07f7444aaff..1959d0a9662 100644 --- a/src/bootstrap/Cargo.toml +++ b/src/bootstrap/Cargo.toml @@ -37,7 +37,7 @@ test = false # Most of the time updating these dependencies requires modifications to the # bootstrap codebase(e.g., https://github.com/rust-lang/rust/issues/124565); # otherwise, some targets will fail. That's why these dependencies are explicitly pinned. -cc = "=1.0.97" +cc = "=1.1.19" cmake = "=0.1.48" build_helper = { path = "../tools/build_helper" } |
