From 62aa599a105f6830d4ee57386b048806e4592f50 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Tue, 15 Oct 2024 22:57:10 -0700 Subject: [PATCH] Bump cc --- Cargo.lock | 13 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25a4ba62f..3fb38da33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,9 +91,12 @@ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" [[package]] name = "cc" -version = "1.1.5" +version = "1.1.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324c74f2155653c90b04f25b2a47a8a631360cb908f92a772695f430c7e31052" +checksum = "b16803a61b81d9eabb7eae2588776c4c1e584b738ede45fdbb4c972cec1e9945" +dependencies = [ + "shlex", +] [[package]] name = "cfg-if" @@ -852,6 +855,12 @@ dependencies = [ "serde", ] +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + [[package]] name = "signal-hook" version = "0.3.17" diff --git a/Cargo.toml b/Cargo.toml index 928c718e4..426bdfaec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -94,7 +94,7 @@ pretty_assertions = "1.3.0" [build-dependencies] # TODO: enable parallel mode once MSRV hits 1.61, see discussion in # https://github.com/rust-lang/cc-rs/pull/849 -cc = "1.1.5" +cc = "1.1.30" rayon = "1.7.0" version_check = "0.9.4"