From 2c3a3f5aa01ba8e5c6ae9d3ed8c36f0137cc0781 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 2 May 2024 11:26:14 -0700 Subject: [PATCH] revert: #58 (partial): `bzip2-rs` can't replace `bzip2` because it's decompress-only --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d033b2e9..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" @@ -68,7 +68,7 @@ lzma = ["lzma-rs/stream"] unreserved = [] default = [ "aes-crypto", - "bzip2-rs", + "bzip2", "deflate", "deflate64", "deflate-zlib-ng",