From 3733200a7c2517701c5e4e8da0bae3a93267a0f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 20:48:59 +0000 Subject: [PATCH] Bump zip from 2.4.2 to 2.5.0 Bumps [zip](https://github.com/zip-rs/zip2) from 2.4.2 to 2.5.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/v2.4.2...v2.5.0) --- updated-dependencies: - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 ++------------------------ java_runtime/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a75fbb..456692b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -865,26 +865,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "thiserror" -version = "2.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "2.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.100", -] - [[package]] name = "tinystr" version = "0.7.6" @@ -1134,18 +1114,16 @@ dependencies = [ [[package]] name = "zip" -version = "2.4.2" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50" +checksum = "27c03817464f64e23f6f37574b4fdc8cf65925b5bfd2b0f2aedf959791941f88" dependencies = [ "arbitrary", "crc32fast", "crossbeam-utils", - "displaydoc", "flate2", "indexmap", "memchr", - "thiserror", "zopfli", ] diff --git a/java_runtime/Cargo.toml b/java_runtime/Cargo.toml index 78076c6..d6a04c1 100644 --- a/java_runtime/Cargo.toml +++ b/java_runtime/Cargo.toml @@ -15,7 +15,7 @@ tracing = { workspace = true } chrono = { version = "^0.4", default-features = false } encoding_rs = { version = "^0.8", features = ["alloc"], default-features = false } event-listener = { version = "^5.4", default-features = false } -zip = { version = "^2.4", features = ["deflate"], default-features = false } +zip = { version = "^2.5", features = ["deflate"], default-features = false } url = { version = "^2.5", default-features = false } java_class_proto = { workspace = true }