From 8ecbdb18701dee366406a1e8ca4777571deb0a4c Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Mon, 19 Apr 2021 12:28:16 +0100 Subject: [PATCH] chore: update to bzip 0.4 --- Cargo.toml | 2 +- src/write.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b7e0fb8a..11a15a12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" flate2 = { version = "1.0.0", default-features = false, optional = true } time = { version = "0.1", optional = true } byteorder = "1.3" -bzip2 = { version = "0.3", optional = true } +bzip2 = { version = "0.4", optional = true } crc32fast = "1.0" thiserror = "1.0" diff --git a/src/write.rs b/src/write.rs index ca2e3fb1..487edfbc 100644 --- a/src/write.rs +++ b/src/write.rs @@ -598,7 +598,7 @@ impl GenericZipWriter { )), #[cfg(feature = "bzip2")] CompressionMethod::Bzip2 => { - GenericZipWriter::Bzip2(BzEncoder::new(bare, bzip2::Compression::Default)) + GenericZipWriter::Bzip2(BzEncoder::new(bare, bzip2::Compression::default())) } CompressionMethod::Unsupported(..) => { return Err(ZipError::UnsupportedArchive("Unsupported compression"))