From 2f5c33c10214fdfbfa74a8dd5f805d62530db243 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 13:01:39 +0000 Subject: [PATCH] chore: bump cc from 1.0.104 to 1.2.39 Bumps [cc](https://github.com/rust-lang/cc-rs) from 1.0.104 to 1.2.39. - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cc-rs/compare/cc-v1.0.104...cc-v1.2.39) --- updated-dependencies: - dependency-name: cc dependency-version: 1.2.39 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 ++++++++++--- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 92169d96a..52689dcd4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -117,13 +117,14 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "cc" -version = "1.0.104" +version = "1.2.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74b6a57f98764a267ff415d50a25e6e166f3831a5071af4995296ea97d210490" +checksum = "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f" dependencies = [ + "find-msvc-tools", "jobserver", "libc", - "once_cell", + "shlex", ] [[package]] @@ -223,6 +224,12 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "find-msvc-tools" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959" + [[package]] name = "getrandom" version = "0.2.12" diff --git a/Cargo.toml b/Cargo.toml index a43a771d1..5927c4012 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ rand_distr = "0.4.0" [build-dependencies] bindgen = "0.69.4" -cc = { version = "1.0", features = ["parallel"] } +cc = { version = "1.2", features = ["parallel"] } pkg-config = "0.3" [features]