fix(deps): update quinn-proto and crossbeam-epoch to fix cargo audit - #256
Merged
Conversation
Resolve the two RUSTSEC advisories that fail the Audit workflow on PR and merge-queue runs: - RUSTSEC-2026-0185: quinn-proto 0.11.14 -> 0.11.16, remote memory exhaustion from unbounded out-of-order stream reassembly (DoS) - RUSTSEC-2026-0204: crossbeam-epoch 0.9.18 -> 0.9.20, invalid pointer dereference in the fmt::Pointer impl Cargo.lock-only change; both crates are transitive dependencies (quinn-proto via reqwest's optional HTTP/3 stack, crossbeam-epoch via the SP1 prover stack). Fixes #251 Fixes #255
There was a problem hiding this comment.
Claude Code Review
This repository is configured for manual code reviews. Comment @claude review for a one-time review, or @claude review always to subscribe this PR to a review on every future push.
Tip: disable this comment in your organization's Code Review settings.
hadjiszs
approved these changes
Jul 8, 2026
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.
Fix the Audit CI check failing on PR and merge-queue runs.
Update two vulnerable transitive dependencies in Cargo.lock via
cargo update -p quinn-proto -p crossbeam-epoch:exhaustion from unbounded out-of-order stream reassembly (DoS).
Pulled in through reqwest's optional HTTP/3 stack (lockfile entry
only, not compiled into any target).
pointer dereference in the
fmt::Pointerimpl. Pulled inthrough the SP1 prover stack.
Verified locally:
cargo auditexits 0 (only allowedinformational warnings remain),
cargo check --workspace --tests --all-featurespasses, andcargo nextest run --workspacepasses (91/91).Fixes #251
Fixes #255