From bb034d89229ef9849ff9ff29429f2ee92ae4e5f7 Mon Sep 17 00:00:00 2001 From: kadiwa Date: Sun, 20 Aug 2023 19:25:04 +0200 Subject: [PATCH] fix standard library not compiling with new cc --- Cargo.lock | 7 +++++-- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 47d6b3c44a8d7..d95f2f92f2d65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -430,9 +430,12 @@ version = "0.1.0" [[package]] name = "cc" -version = "1.0.79" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" +checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" +dependencies = [ + "libc", +] [[package]] name = "cfg-if" diff --git a/Cargo.toml b/Cargo.toml index d2e84d5426f9f..cd2641d658b1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -resolver = "1" +resolver = "2" members = [ "compiler/rustc", "library/std",