Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Allow choosing bzip2 rust backend
Signed-off-by: Elichai Turkel <[email protected]>
  • Loading branch information
elichai committed Mar 26, 2025
commit 969550b5418978cc90b05a79ad1f72b7716bf9ee
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ time = { version = "0.3.37", default-features = false }

[dependencies]
aes = { version = "0.8", optional = true }
bzip2 = { version = "0.5.0", optional = true }
bzip2 = { version = "0.5.0", default-features = false, optional = true }
chrono = { version = "0.4", optional = true }
constant_time_eq = { version = "0.3", optional = true }
crc32fast = "1.4"
Expand Down Expand Up @@ -83,6 +83,8 @@ nt-time = ["dep:nt-time"]
lzma = ["lzma-rs/stream"]
unreserved = []
xz = ["dep:xz2"]
bzip2 = ["dep:bzip2", "bzip2/default"]
bzip2-rs = ["dep:bzip2", "bzip2/libbz2-rs-sys"]
default = [
"aes-crypto",
"bzip2",
Expand Down
Loading