From 7c0aacfe81d5c4c7a5821ab283d719ed3d9cb47a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 01:02:12 +0000 Subject: [PATCH] build(deps): bump zip from 4.6.1 to 7.0.0 Bumps [zip](https://github.com/zip-rs/zip2) from 4.6.1 to 7.0.0. - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v4.6.1...v7.0.0) --- updated-dependencies: - dependency-name: zip dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 63 +++++++++++++++++++++++++--------------- alvr/adb/Cargo.toml | 2 +- alvr/launcher/Cargo.toml | 2 +- 3 files changed, 42 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a5ab0efc5..0aafb5a44c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1559,6 +1559,21 @@ dependencies = [ "libc", ] +[[package]] +name = "crc" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" + [[package]] name = "crc32fast" version = "1.5.0" @@ -3114,26 +3129,6 @@ dependencies = [ "windows-link 0.2.1", ] -[[package]] -name = "liblzma" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73c36d08cad03a3fbe2c4e7bb3a9e84c57e4ee4135ed0b065cade3d98480c648" -dependencies = [ - "liblzma-sys", -] - -[[package]] -name = "liblzma-sys" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01b9596486f6d60c3bbe644c0e1be1aa6ccc472ad630fe8927b456973d7cb736" -dependencies = [ - "cc", - "libc", - "pkg-config", -] - [[package]] name = "libm" version = "0.2.15" @@ -3258,6 +3253,16 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" +[[package]] +name = "lzma-rust2" +version = "0.15.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48172246aa7c3ea28e423295dd1ca2589a24617cc4e588bb8cfe177cb2c54d95" +dependencies = [ + "crc", + "sha2", +] + [[package]] name = "mach2" version = "0.4.3" @@ -5033,6 +5038,17 @@ dependencies = [ "digest", ] +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + [[package]] name = "sharded-slab" version = "0.1.7" @@ -7601,9 +7617,9 @@ dependencies = [ [[package]] name = "zip" -version = "4.6.1" +version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1" +checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037" dependencies = [ "aes", "arbitrary", @@ -7612,10 +7628,11 @@ dependencies = [ "crc32fast", "deflate64", "flate2", + "generic-array", "getrandom 0.3.4", "hmac", "indexmap", - "liblzma", + "lzma-rust2", "memchr", "pbkdf2", "ppmd-rust", diff --git a/alvr/adb/Cargo.toml b/alvr/adb/Cargo.toml index 593c8264c2..b4f1e30f86 100644 --- a/alvr/adb/Cargo.toml +++ b/alvr/adb/Cargo.toml @@ -14,4 +14,4 @@ alvr_session.workspace = true anyhow = "1" ureq = "3" -zip = "4" +zip = "7" diff --git a/alvr/launcher/Cargo.toml b/alvr/launcher/Cargo.toml index 965992b227..f2eec27bc8 100644 --- a/alvr/launcher/Cargo.toml +++ b/alvr/launcher/Cargo.toml @@ -28,7 +28,7 @@ reqwest = { version = "0.12", default-features = false, features = [ serde_json = "1" tar = "0.4" tokio = { version = "1", features = ["rt-multi-thread"] } -zip = "4" +zip = "7" [target.'cfg(windows)'.build-dependencies] winres = "0.1"