diff --git a/Cargo.lock b/Cargo.lock index ce0017132..b4c940907 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -204,8 +204,9 @@ dependencies = [ [[package]] name = "bzip3" -version = "0.8.1" -source = "git+https://github.com/bczhc/bzip3-rs?rev=094b80c321732636f32733cc72f05ac3deffbe88#094b80c321732636f32733cc72f05ac3deffbe88" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a396e70a91080ca308fe4d37ebf2d15b444beef3b53853d9e36110b3a331e82e" dependencies = [ "byteorder", "bytesize", @@ -679,7 +680,8 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libbzip3-sys" version = "0.3.3+1.3.2" -source = "git+https://github.com/bczhc/bzip3-rs?rev=094b80c321732636f32733cc72f05ac3deffbe88#094b80c321732636f32733cc72f05ac3deffbe88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fb2f193373a540601f16a3375d351d685e4ca288c766fe35ce035874c2711f1" dependencies = [ "bindgen", "cc", diff --git a/Cargo.toml b/Cargo.toml index bdfedae28..3051a305a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ atty = "0.2.14" bstr = { version = "1.7.0", default-features = false, features = ["std"] } bytesize = "1.3.0" bzip2 = "0.4.4" -bzip3 = { git = "https://github.com/bczhc/bzip3-rs", rev = "094b80c321732636f32733cc72f05ac3deffbe88", features = ["bundled"] } +bzip3 = { version = "0.8.3", features = ["bundled"] } clap = { version = "4.4.6", features = ["derive", "env"] } filetime = "0.2.22" flate2 = { version = "1.0.28", default-features = false }