From a45acb7fa1f1a1ed35abeb56e74786b2163a8cbd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 23:49:51 +0000 Subject: [PATCH] chore(deps): bump bzip2 from 0.5.2 to 0.6.1 Bumps [bzip2](https://github.com/trifectatechfoundation/bzip2-rs) from 0.5.2 to 0.6.1. - [Release notes](https://github.com/trifectatechfoundation/bzip2-rs/releases) - [Commits](https://github.com/trifectatechfoundation/bzip2-rs/compare/v0.5.2...v0.6.1) --- updated-dependencies: - dependency-name: bzip2 dependency-version: 0.6.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++--------------------- crates/nvisy-archive/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1d1e0b9..33d3ba1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,15 +102,6 @@ dependencies = [ "serde", ] -[[package]] -name = "bzip2" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" -dependencies = [ - "bzip2-sys", -] - [[package]] name = "bzip2" version = "0.6.1" @@ -120,16 +111,6 @@ dependencies = [ "libbz2-rs-sys", ] -[[package]] -name = "bzip2-sys" -version = "0.1.13+1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" -dependencies = [ - "cc", - "pkg-config", -] - [[package]] name = "cc" version = "1.2.41" @@ -633,7 +614,7 @@ dependencies = [ name = "nvisy-archive" version = "0.1.0" dependencies = [ - "bzip2 0.5.2", + "bzip2", "flate2", "nvisy-core", "sevenz-rust", @@ -1643,7 +1624,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9013f1222db8a6d680f13a7ccdc60a781199cd09c2fa4eff58e728bb181757fc" dependencies = [ "aes", - "bzip2 0.6.1", + "bzip2", "constant_time_eq", "crc32fast", "deflate64", diff --git a/crates/nvisy-archive/Cargo.toml b/crates/nvisy-archive/Cargo.toml index c76beba..38742ae 100644 --- a/crates/nvisy-archive/Cargo.toml +++ b/crates/nvisy-archive/Cargo.toml @@ -40,7 +40,7 @@ sevenz-rust = { version = "0.6", optional = true, features = [] } # Compression formats (all optional) flate2 = { version = "1.1", optional = true, features = [] } -bzip2 = { version = "0.5", optional = true, features = [] } +bzip2 = { version = "0.6", optional = true, features = [] } xz2 = { version = "0.1", optional = true, features = [] } [dev-dependencies]