From dfd501b4cafe10b64e5044098dfb887a1d89e388 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Wed, 3 Jun 2026 13:41:45 +0100 Subject: [PATCH] Update astral_async_zip dev-dependency to 0.0.18 --- Cargo.lock | 32 ++++++-------------------------- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aacd7eb..a00ad7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -48,7 +48,7 @@ dependencies = [ "async-trait", "http", "reqwest", - "thiserror 2.0.18", + "thiserror", "tower-service", ] @@ -66,7 +66,7 @@ dependencies = [ "memmap2", "reqwest", "rstest", - "thiserror 2.0.18", + "thiserror", "tokio", "tokio-stream", "tokio-util", @@ -77,14 +77,14 @@ dependencies = [ [[package]] name = "astral_async_zip" -version = "0.0.17" +version = "0.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab72a761e6085828cc8f0e05ed332b2554701368c5dc54de551bfaec466518ba" +checksum = "c15fc5b591f19dfbbbce736615908d74f1d9252bb34b231873cb995f2a997ffb" dependencies = [ "crc32fast", "futures-lite", "pin-project", - "thiserror 1.0.65", + "thiserror", "tokio", "tokio-util", ] @@ -899,33 +899,13 @@ dependencies = [ "futures-core", ] -[[package]] -name = "thiserror" -version = "1.0.65" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5" -dependencies = [ - "thiserror-impl 1.0.65", -] - [[package]] name = "thiserror" version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ - "thiserror-impl 2.0.18", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.65" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602" -dependencies = [ - "proc-macro2", - "quote", - "syn", + "thiserror-impl", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a05a569..b9587ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ tracing = "0.1.40" axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1"] } tokio = { version = "1.33.0", default-features = false, features = ["macros", "test-util"] } tower-http = { version = "0.6.1", default-features = false, features = ["fs"] } -astral_async_zip = { version = "0.0.17", default-features = false, features = ["tokio"] } +astral_async_zip = { version = "0.0.18", default-features = false, features = ["tokio"] } assert_matches = "1.5.0" rstest = { version = "0.26.0" } url = { version = "2.4.1" }