chore: bump bzip2 from 0.3.3 to 0.4.3 (#18361)
* chore: bump bzip2 from 0.3.3 to 0.4.3 Bumps [bzip2](https://github.com/alexcrichton/bzip2-rs) from 0.3.3 to 0.4.3. - [Release notes](https://github.com/alexcrichton/bzip2-rs/releases) - [Commits](https://github.com/alexcrichton/bzip2-rs/commits) --- updated-dependencies: - dependency-name: bzip2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * [auto-commit] Update all Cargo lock files * Update to new api Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com> Co-authored-by: Tyera Eulberg <tyera@solana.com>
This commit is contained in:
@ -15,7 +15,7 @@ bincode = "1.3.3"
|
||||
blake3 = "0.3.8"
|
||||
bv = { version = "0.11.1", features = ["serde"] }
|
||||
byteorder = "1.4.3"
|
||||
bzip2 = "0.3.3"
|
||||
bzip2 = "0.4.3"
|
||||
dashmap = { version = "4.0.2", features = ["rayon", "raw-api"] }
|
||||
crossbeam-channel = "0.5"
|
||||
dir-diff = "0.3.2"
|
||||
|
@ -362,7 +362,7 @@ pub fn archive_snapshot_package(
|
||||
match snapshot_package.archive_format {
|
||||
ArchiveFormat::TarBzip2 => {
|
||||
let mut encoder =
|
||||
bzip2::write::BzEncoder::new(archive_file, bzip2::Compression::Best);
|
||||
bzip2::write::BzEncoder::new(archive_file, bzip2::Compression::best());
|
||||
io::copy(tar_output, &mut encoder)?;
|
||||
let _ = encoder.finish()?;
|
||||
}
|
||||
|
Reference in New Issue
Block a user