fix(deps): patch quinn-proto 0.11.14 -> 0.11.15 (RUSTSEC-2026-0185)#47
Merged
Merged
Conversation
Resolves RUSTSEC-2026-0185 in quinn-proto, the advisory that was failing the audit CI gate on every PR (#44, #46). quinn-proto reaches the lockfile via the reqwest 0.12 tree but is not activated under any feature/target combination (cargo tree -i reports nothing to print), so this is a lockfile-only patch. Verified: cargo audit now reports 0 vulnerabilities (exit 0); cargo test --all-features green.
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
Fixes the
auditCI gate that was failing on every PR (#44, #46) due to RUSTSEC-2026-0185 inquinn-proto.Change
Single lockfile bump:
quinn-proto0.11.14 -> 0.11.15.quinn-protoreachesCargo.lockvia thereqwest 0.12transitive tree (llm-kernel itself depends onreqwest 0.13), but it is not activated under any feature or target —cargo tree -i quinn-proto --all-featuresreports "nothing to print". So the vulnerable code is never compiled into any build; this is a defense-in-depth lockfile patch so the audit scanner no longer flags it.Verification
cargo audit→ 0 vulnerabilities, exit 0 (was: 1, RUSTSEC-2026-0185)cargo build --all-features→ cleancargo test --all-features→ 571 passed, 0 failedallowedunmaintained/unsound warnings (paste, rustls-pemfile, memmap2) — non-blocking, pre-existingThe remaining allowed warnings are out of scope here; this PR only clears the hard audit failure.