fix(deps): remediate RustSec advisories#620
Open
chantra wants to merge 1 commit into
Open
Conversation
Bump vulnerable dependencies and drop an unused one to clear the safe-fixable advisories reported by `cargo deny check advisories`: - quick-xml 0.38 -> 0.41 (RUSTSEC-2026-0194 quadratic duplicate-attribute check, RUSTSEC-2026-0195 unbounded namespace-declaration allocation). Fixes our direct usage in the upnp/upnp-serve crates. - plist 1.9.0 -> 1.10.0 to drop the last transitive quick-xml 0.39.4 (tauri build tooling), fully clearing RUSTSEC-2026-0194/0195. - anyhow 1.0.102 -> 1.0.103 (RUSTSEC-2026-0190 Error::downcast_mut unsoundness). - memmap2 0.9.10 -> 0.9.11 (RUSTSEC-2026-0186 unchecked pointer offset). - rand 0.9.x/0.8.x -> 0.9.4/0.8.6 (RUSTSEC-2026-0097 unsound reseed under a custom logger). - Remove the unused bincode dependency (RUSTSEC-2025-0141 unmaintained); it had no references anywhere in the workspace. Known residuals (not fixable here, so cargo deny still reports them): - crypto-hash (RUSTSEC-2025-0060) intentionally kept as the default sha1w backend for now. - Various gtk3/tauri/unic transitive advisories have no safe upgrade. Assisted-by: Cursor (Claude Opus 4.8)
chantra
force-pushed
the
fix/rustsec-advisories
branch
from
July 6, 2026 12:41
e42fedb to
02c89fd
Compare
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.
Bump vulnerable dependencies and drop an unused one to clear the safe-fixable advisories reported by
cargo deny check advisories:Known residuals (not fixable here, so cargo deny still reports them):
Assisted-by: Cursor (Claude Opus 4.8)