build: bump sevenz-rust2 to 0.21.5 - #552
Merged
Merged
Conversation
Pulls in a batched AES-CBC block decryption improvement in sevenz-rust2, and transitively bumps lzma-rust2 to 0.19.0, which carries the 0.18.1 out-of-bounds LZ encoder fix. Both crates' affected code paths are currently unreachable in exarch-core, so this is a forward-looking hardening bump rather than an observable behavior change. Closes #548
bug-ops
enabled auto-merge (squash)
August 18, 2026 18:24
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
sevenz-rust20.21.4 -> 0.21.5 (batched AES-CBC block decryption, a 7z-extraction perf improvement on AES-encrypted archives)lzma-rust20.18.0 -> 0.19.0, which carries the 0.18.1 out-of-bounds LZ encoder fix (upstream release: v0.2.8 #107); the 0.19.0 minor bump itself adds sans-I/O LZMA1/LZIP decoders (upstream chore: bump dorny/paths-filter from 3 to 4 #109)Cargo.toml'ssevenz-rust2 = "0.21.4"caret requirement already admits 0.21.5, so the manifest floor is left as-isexarch-core: every 7z call site usesPassword::empty()(encrypted archives are rejected before decryption), and 7z archive creation is unsupported (solzma-rust2's encoder surface is dormant) — this is a forward-looking hardening bump, not an observable behavior changecargo auditandcargo deny checkare cleanTest plan
cargo build --workspace --all-features(excluding exarch-python's pre-existing, unrelated pyo3 linker issue)cargo nextest run --workspace --all-features --exclude exarch-python --exclude exarch-node— 1229 passed, 0 failedcargo test --doc --workspace --all-features --exclude exarch-python --exclude exarch-node— 117 passed, 0 failedcargo +nightly fmt --all -- --checkcargo clippy --workspace --all-targets --all-features -- -D warningsRUSTDOCFLAGS="-D warnings" cargo doc --no-deps --all-features --workspacecargo audit/cargo deny check— cleanPasswordRequiredCloses #548