diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2021-07-14 09:35:25 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-14 09:35:25 +0900 |
| commit | 4ec7b489d674162e8c945129ca9f2facfb9eb4f8 (patch) | |
| tree | 7d2f329ebbd1fd1aecc19ae491b032474e863b7e | |
| parent | d5e0426eab31707d983d79acbe15cf78d00d4506 (diff) | |
| parent | e457c2739b1c040953df3989a864bcd189255226 (diff) | |
Rollup merge of #87099 - JohnTitor:upgrade-cc-crate, r=alexcrichton
Upgrade `cc` crate to 1.0.69 This pulls another fix for #83043, i.e., alexcrichton/cc-rs#605. r? ``@alexcrichton``
| -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 | ||||
| -rw-r--r-- | library/profiler_builtins/Cargo.toml | 2 | ||||
| -rw-r--r-- | library/unwind/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/bootstrap/Cargo.toml | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock index b432f9ae227..6885ac65ca9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,9 +435,9 @@ version = "0.1.0" [[package]] name = "cc" -version = "1.0.68" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787" +checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2" dependencies = [ "jobserver", ] diff --git a/compiler/rustc_codegen_ssa/Cargo.toml b/compiler/rustc_codegen_ssa/Cargo.toml index 9bd5764f073..6a6f93d50d3 100644 --- a/compiler/rustc_codegen_ssa/Cargo.toml +++ b/compiler/rustc_codegen_ssa/Cargo.toml @@ -9,7 +9,7 @@ test = false [dependencies] bitflags = "1.2.1" -cc = "1.0.68" +cc = "1.0.69" itertools = "0.9" tracing = "0.1" libc = "0.2.50" diff --git a/compiler/rustc_llvm/Cargo.toml b/compiler/rustc_llvm/Cargo.toml index 3fca2e1ccb9..1bfa489d39e 100644 --- a/compiler/rustc_llvm/Cargo.toml +++ b/compiler/rustc_llvm/Cargo.toml @@ -13,4 +13,4 @@ libc = "0.2.73" [build-dependencies] build_helper = { path = "../../src/build_helper" } -cc = "1.0.68" +cc = "1.0.69" diff --git a/library/profiler_builtins/Cargo.toml b/library/profiler_builtins/Cargo.toml index 7b7ca8029b4..b7ab4f19f0a 100644 --- a/library/profiler_builtins/Cargo.toml +++ b/library/profiler_builtins/Cargo.toml @@ -14,4 +14,4 @@ core = { path = "../core" } compiler_builtins = { version = "0.1.0", features = ['rustc-dep-of-std'] } [build-dependencies] -cc = "1.0.68" +cc = "1.0.69" diff --git a/library/unwind/Cargo.toml b/library/unwind/Cargo.toml index c76ba7667d4..031d2942c51 100644 --- a/library/unwind/Cargo.toml +++ b/library/unwind/Cargo.toml @@ -21,7 +21,7 @@ compiler_builtins = "0.1.0" cfg-if = "0.1.8" [build-dependencies] -cc = "1.0.68" +cc = "1.0.69" [features] diff --git a/src/bootstrap/Cargo.toml b/src/bootstrap/Cargo.toml index 6fb7a1c088f..64f022b4e8d 100644 --- a/src/bootstrap/Cargo.toml +++ b/src/bootstrap/Cargo.toml @@ -40,7 +40,7 @@ cmake = "0.1.38" filetime = "0.2" num_cpus = "1.0" getopts = "0.2.19" -cc = "1.0.68" +cc = "1.0.69" libc = "0.2" serde = { version = "1.0.8", features = ["derive"] } serde_json = "1.0.2" |
