all: Drop arrayref by bumping blake3 and stable-hash - #6715
Open
incrypto32 wants to merge 1 commit into
Open
Conversation
blake3 1.8.7 drops arrayref, whose crates.io account was compromised (RUSTSEC-2026-0260). stable-hash requires it on both branches now. Pin stable-hash by rev rather than branch so re-resolution cannot silently move it.
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.
Removes
arrayreffrom the tree. Its crates.io account was compromised on 2026-08-20 (RUSTSEC-2026-0260). We were never exposed since the lockfile pinned the clean 0.3.7, but the account is still locked, so removing it takes future releases out of our path.blake3 1.8.7 dropped arrayref and is the only release that has. Needed blake3 bumped on both stable-hash branches first:
main: Bump blake3 to 1.8.7 to drop arrayref stable-hash#20 (70300f9)old: Bump blake3 to 1.8.7 to drop arrayref stable-hash#19 (42b85d9)stable-hash is now pinned by
revinstead ofbranch. The manifests tracked branches while the lockfile held 2023 commits, so any re-resolution would have silently jumped forward across a blake3 major version on a crate that computes PoIs.Lockfile: 938 → 932 packages. Removed
arrayref 0.3.7,blake3 0.3.8,blake3 1.8.5,arrayvec 0.5.2,cfg-if 0.1.10,constant_time_eq 0.1.5,crypto-mac 0.8.0,uint 0.8.5. Addedblake3 1.8.7,uint 0.10.1.Known-value digest tests pass unchanged:
online_vs_reference(hardcoded Legacy and Fast PoI hashes) andbig_decimal_stable(hardcoded legacy digests). Note theuintbump touchesfast/fld.rs, which is on the Fast path.Closes #6714