Add bundled feature to bzip3

This commit is contained in:
João M. Bezerra 2023-09-21 18:11:26 -03:00 committed by João Marcos
parent 8edd8d2e1c
commit ae9f4e0151
2 changed files with 4 additions and 6 deletions

8
Cargo.lock generated
View File

@ -256,9 +256,8 @@ dependencies = [
[[package]]
name = "bzip3"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a396e70a91080ca308fe4d37ebf2d15b444beef3b53853d9e36110b3a331e82e"
version = "0.8.1"
source = "git+https://github.com/bczhc/bzip3-rs?rev=094b80c321732636f32733cc72f05ac3deffbe88#094b80c321732636f32733cc72f05ac3deffbe88"
dependencies = [
"byteorder",
"bytesize",
@ -832,8 +831,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "libbzip3-sys"
version = "0.3.3+1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fb2f193373a540601f16a3375d351d685e4ca288c766fe35ce035874c2711f1"
source = "git+https://github.com/bczhc/bzip3-rs?rev=094b80c321732636f32733cc72f05ac3deffbe88#094b80c321732636f32733cc72f05ac3deffbe88"
dependencies = [
"bindgen",
"cc",

View File

@ -15,7 +15,7 @@ atty = "0.2.14"
bstr = { version = "1.10.0", default-features = false, features = ["std"] }
bytesize = "1.3.0"
bzip2 = "0.4.4"
bzip3 = "0.8.1"
bzip3 = { git = "https://github.com/bczhc/bzip3-rs", rev = "094b80c321732636f32733cc72f05ac3deffbe88", features = ["bundled"] }
clap = { version = "4.5.20", features = ["derive", "env"] }
filetime_creation = "0.2"
flate2 = { version = "1.0.30", default-features = false }