chore: update to bzip 0.4

This commit is contained in:
Marli Frost 2021-04-19 12:28:16 +01:00
parent ce272616ac
commit 8ecbdb1870
No known key found for this signature in database
GPG key ID: CB0BEA7CF9BD1245
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -598,7 +598,7 @@ impl<W: Write + io::Seek> GenericZipWriter<W> {
)),
#[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"))