From b1e985de57566ccb12366cc331799a76d7676e62 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 20:10:32 +0000 Subject: [PATCH] Bump the cargo group across 1 directory with 3 updates Bumps the cargo group with 3 updates in the / directory: [tracing-forest](https://github.com/QnnOkabayashi/tracing-forest), [zip](https://github.com/zip-rs/zip2) and [cc](https://github.com/rust-lang/cc-rs). Updates `tracing-forest` from 0.1.6 to 0.2.0 - [Commits](https://github.com/QnnOkabayashi/tracing-forest/commits) Updates `zip` from 4.5.0 to 4.6.0 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v4.5.0...v4.6.0) Updates `cc` from 1.2.34 to 1.2.35 - [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.2.34...cc-v1.2.35) --- updated-dependencies: - dependency-name: tracing-forest dependency-version: 0.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: zip dependency-version: 4.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: cc dependency-version: 1.2.35 dependency-type: indirect update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++---- gix-archive/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 820f349712b..9d92454251d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -459,10 +459,11 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.34" +version = "1.2.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc" +checksum = "590f9024a68a8c40351881787f1934dc11afd69090f5edb6831464694d836ea3" dependencies = [ + "find-msvc-tools", "jobserver", "libc", "shlex", @@ -1104,6 +1105,12 @@ dependencies = [ "windows-sys 0.60.2", ] +[[package]] +name = "find-msvc-tools" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e178e4fba8a2726903f6ba98a6d221e76f9c12c650d5dc0e6afdc50677b49650" + [[package]] name = "flate2" version = "1.1.2" @@ -5943,9 +5950,9 @@ dependencies = [ [[package]] name = "zip" -version = "4.5.0" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8835eb39822904d39cb19465de1159e05d371973f0c6df3a365ad50565ddc8b9" +checksum = "c034aa6c54f654df20e7dc3713bc51705c12f280748fb6d7f40f87c696623e34" dependencies = [ "arbitrary", "crc32fast", diff --git a/gix-archive/Cargo.toml b/gix-archive/Cargo.toml index 5b94e4eb241..1786e91e543 100644 --- a/gix-archive/Cargo.toml +++ b/gix-archive/Cargo.toml @@ -33,7 +33,7 @@ gix-path = { version = "^0.10.20", path = "../gix-path", optional = true } gix-date = { version = "^0.10.5", path = "../gix-date" } flate2 = { version = "1.1.1", optional = true, default-features = false, features = ["zlib-rs"] } -zip = { version = "4.3.0", optional = true, default-features = false, features = ["deflate-flate2"] } +zip = { version = "4.6.0", optional = true, default-features = false, features = ["deflate-flate2"] } jiff = { version = "0.2.15", default-features = false, features = ["std"] } thiserror = "2.0.0"