From 8331d703011bee5814a5f93bb98c96df7649d067 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 19:54:02 +0000 Subject: [PATCH] Bump zip from 6.0.0 to 8.0.0 Bumps [zip](https://github.com/zip-rs/zip2) from 6.0.0 to 8.0.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/v6.0.0...v8.0.0) --- updated-dependencies: - dependency-name: zip dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 32 +++++++++----------------------- java_runtime/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fd625c2..242129b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,15 +23,6 @@ version = "1.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" -[[package]] -name = "arbitrary" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" -dependencies = [ - "derive_arbitrary", -] - [[package]] name = "async-recursion" version = "1.1.1" @@ -126,17 +117,6 @@ version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" -[[package]] -name = "derive_arbitrary" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", -] - [[package]] name = "displaydoc" version = "0.2.5" @@ -847,6 +827,12 @@ dependencies = [ "tracing-log", ] +[[package]] +name = "typed-path" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e" + [[package]] name = "unicode-ident" version = "1.0.18" @@ -1041,15 +1027,15 @@ dependencies = [ [[package]] name = "zip" -version = "6.0.0" +version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b" +checksum = "79b32dd4ad3aca14ae109f8cce0495ac1c57f6f4f00ad459a40e582f89440d97" dependencies = [ - "arbitrary", "crc32fast", "flate2", "indexmap", "memchr", + "typed-path", "zopfli", ] diff --git a/java_runtime/Cargo.toml b/java_runtime/Cargo.toml index f3f4d9a..b481d38 100644 --- a/java_runtime/Cargo.toml +++ b/java_runtime/Cargo.toml @@ -14,7 +14,7 @@ tracing = { workspace = true } chrono = { version = "^0.4", default-features = false } encoding_rs = { version = "^0.8", features = ["alloc"], default-features = false } -zip = { version = "^6.0", features = ["deflate"], default-features = false } +zip = { version = "^8.0", features = ["deflate"], default-features = false } url = { version = "^2.5", default-features = false } java_class_proto = { workspace = true }