diff --git a/Cargo.toml b/Cargo.toml index fbf4c7ae..de163c4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ time = { version = "0.3.36", default-features = false } [dependencies] aes = { version = "0.8.4", optional = true } byteorder = "1.5.0" -bzip2-rs = { version = "0.1.2", optional = true } +bzip2 = { version = "0.4.4", optional = true } chrono = { version = "0.4.38", optional = true } constant_time_eq = { version = "0.3.0", optional = true } crc32fast = "1.4.0" @@ -52,9 +52,7 @@ getrandom = { version = "0.2.14", features = ["js"] } walkdir = "2.5.0" time = { workspace = true, features = ["formatting", "macros"] } anyhow = "1" - [features] -bzip2 = ["bzip2-rs"] aes-crypto = ["aes", "constant_time_eq", "hmac", "pbkdf2", "sha1"] chrono = ["chrono/default"] _deflate-any = [] @@ -70,7 +68,7 @@ lzma = ["lzma-rs/stream"] unreserved = [] default = [ "aes-crypto", - "bzip2-rs", + "bzip2", "deflate", "deflate64", "deflate-zlib-ng", diff --git a/src/read.rs b/src/read.rs index f76de446..25ff7f4d 100644 --- a/src/read.rs +++ b/src/read.rs @@ -30,7 +30,7 @@ use flate2::read::DeflateDecoder; use deflate64::Deflate64Decoder; #[cfg(feature = "bzip2")] -use bzip2_rs::decoder::DecoderReader; +use bzip2::read::BzDecoder; #[cfg(feature = "zstd")] use zstd::stream::read::Decoder as ZstdDecoder; @@ -146,7 +146,7 @@ pub(crate) enum ZipFileReader<'a> { #[cfg(feature = "deflate64")] Deflate64(Crc32Reader>>>), #[cfg(feature = "bzip2")] - Bzip2(Crc32Reader>>), + Bzip2(Crc32Reader>>), #[cfg(feature = "zstd")] Zstd(Crc32Reader>>>), #[cfg(feature = "lzma")] @@ -307,7 +307,7 @@ pub(crate) fn make_reader( } #[cfg(feature = "bzip2")] CompressionMethod::Bzip2 => { - let bzip2_reader = DecoderReader::new(reader); + let bzip2_reader = BzDecoder::new(reader); ZipFileReader::Bzip2(Crc32Reader::new(bzip2_reader, crc32, ae2_encrypted)) } #[cfg(feature = "zstd")]