fix(deps): patch security-audit advisories (crossbeam-epoch, rand)#26
Merged
Conversation
Bump transitive deps to clear the failing `cargo audit` CI: - crossbeam-epoch 0.9.18 -> 0.9.20 (RUSTSEC-2026-0204: invalid pointer dereference in `fmt::Pointer` impl; the only advisory reported as a vulnerability, i.e. the one failing the job) - rand 0.9.2 -> 0.9.4 (RUSTSEC-2026-0097: unsoundness with a custom logger using `rand::rng()`) Both are semver-compatible patch bumps (no Cargo.toml change). The remaining `keccak` 0.1.5 unsound/yanked warnings are pinned by `merlin` 3.0.0 and are warnings only (`denyWarnings: false`), so they do not fail CI. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019YYGKfEk7FvazwgaQtvq37
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.
Problem
The Security audit CI job (
cargo audit) is red onmain. It reports 4 entries; only one is a vulnerability (which is what fails the job —denyWarnings: falsemeans warnings don't fail):crossbeam-epoch0.9.18fmt::Pointerimpl (fix ≥ 0.9.20)rand0.9.2rand::rng())keccak0.1.5keccak0.1.5Fix
Semver-compatible Cargo.lock-only bumps (no
Cargo.tomlchange):crossbeam-epoch0.9.18 → 0.9.20 (transitive viarayon) — clears the vulnerabilityrand0.9.2 → 0.9.4 — clears the unsound warningkeccak0.1.5 is pinned bymerlin3.0.0 (via thebulletproofsfork) and cannot move without changing that fork; it is warnings-only (unsound backend is opt-in and unused, plus yanked), so it does not fail CI.After the bump,
cargo auditexits 0.🤖 Generated with Claude Code