fix: refresh Rust audit dependencies#133
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR refreshes Rust dependencies and updates the security workflow so cargo audit stays green while explicitly documenting and temporarily ignoring remaining upstream quick-xml advisories.
Changes:
- Bumped Rust parser dependencies (
calamineto 0.35,pdf-extractto 0.12) to reduce dependency drift and clear fixed advisory paths. - Updated the GitHub Actions security workflow to ignore the currently-unresolved
quick-xmlRustSec advisories and documented why they’re still present transitively.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src-tauri/Cargo.toml | Updates dependency versions for spreadsheet and PDF parsing crates. |
| .github/workflows/security.yml | Documents and applies cargo audit ignores for the remaining upstream quick-xml advisories. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced Jul 3, 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.
Summary
pdf-extractfrom 0.10 to 0.12 to clear the fixedlopdfadvisory pathcalaminefrom 0.26 to 0.35 so spreadsheet parsing is on the current upstream linequick-xmladvisories that still arrive through currentcalamine/docx-rs/Tauri plist releasesVerification
cargo test— 788 passed, 0 failed, 2 ignoredcargo audit --ignore RUSTSEC-2023-0071 --ignore RUSTSEC-2026-0194 --ignore RUSTSEC-2026-0195— exits 0; warnings onlycargo metadata --no-deps— metadata parsesNotes
This does not pretend the
quick-xmlparser DoS advisory is gone. It reduces the dependency drift we can fix today and keeps the remaining upstream limitation explicit in the audit workflow instead of leaving main red.