fix(cargo-audit): update h2, anyhow, event-listener and drop actix http2 feature - #436
Merged
Conversation
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
tvinagre
approved these changes
Aug 18, 2026
louise-poole
enabled auto-merge
August 18, 2026 12:59
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.
Clears all
cargo auditvulnerabilities. Audit goes from 2 vulnerabilities + 13 warnings to 0 vulnerabilities + 9 warnings.Vulnerabilities
Both were RUSTSEC-2026-0258 (h2 unbounded empty DATA frames):
h20.4.15 → 0.4.16h20.3.27 — no 0.3.x patch exists, and actix-http 3.13.3 still requiresh2 ^0.3.27. Removed at the source by dropping actix-web'shttp2default feature, the only thing pulling it in. h2 0.3 is no longer in the lockfile.Unsound / yanked
anyhow1.0.102 → 1.0.104 (RUSTSEC-2026-0190)event-listener5.4.1 → 5.4.2 (RUSTSEC-2026-0221)bitcoin-io0.1.100 → 0.1.101 (yanked)bitcoin_hashes0.14.100 → 0.14.101 (yanked)Config
Removed the
RUSTSEC-2026-0104ignore from.cargo/audit.toml. It was pinned for rustls-webpki 0.101.7; the tree is on 0.103.13, so the entry had no effect.RUSTSEC-2025-0055stays ignored.Behaviour change
The RPC server no longer speaks HTTP/2.
fynd-rpc/src/builder.rs:299binds plain TCP with no TLS, so there is no ALPN negotiation and the only HTTP/2 path was h2c prior knowledge.🤖 Generated with Claude Code