From 5bff4ddba7fc1ea99b327f5789e952da6fb8f608 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Thu, 31 Oct 2024 00:24:44 +0100 Subject: [PATCH] chore: update cc crate --- Cargo.lock | 12 +++++++++--- libs/deob/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74d9386..e2e2cc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -125,13 +125,13 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.99" +version = "1.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" +checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f" dependencies = [ "jobserver", "libc", - "once_cell", + "shlex", ] [[package]] @@ -778,6 +778,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + [[package]] name = "simd-adler32" version = "0.3.7" diff --git a/libs/deob/Cargo.toml b/libs/deob/Cargo.toml index b5882e6..49ea46c 100644 --- a/libs/deob/Cargo.toml +++ b/libs/deob/Cargo.toml @@ -4,4 +4,4 @@ version = "0.1.0" edition = "2021" [build-dependencies] -cc = "1.0" +cc = "1.1"