[EASY] Clean up remaining cargo audit advisories#4287
Merged
squadgazzz merged 9 commits intomainfrom Mar 24, 2026
Merged
Conversation
Update transitive dependencies to resolve all 7 advisories:
- aws-lc-sys 0.35.0 → 0.39.0 (fixes RUSTSEC-2026-{0044,0045,0046,0047,0048})
- rustls-webpki 0.103.8 → 0.103.10 (fixes RUSTSEC-2026-0049)
- Switch aws-sdk-s3 from `rustls` to `default-https-client` feature to use
the modern TLS stack (rustls-aws-lc) instead of the legacy one
(legacy-rustls-ring) which pulled in rustls 0.21 and the vulnerable
rustls-webpki 0.101.7 (fixes RUSTSEC-2026-0049 for the 0.101.x line)
- Updated AWS SDK chain to latest compatible versions
The AWS SDK dependency updates introduced deeper type nesting that exceeds the default compiler recursion limit when building tests.
The compiler needs 130; 160 provides reasonable headroom without being excessive.
These advisories (RUSTSEC-2024-0421, RUSTSEC-2024-0437) are no longer triggered by the current dependency versions.
Fixes RUSTSEC-2026-0012 (unsound ARMv8 assembly backend) and resolves the yanked crate warning.
Removes lru 0.12.5 from the dependency tree, fixing RUSTSEC-2026-0002 (unsound IterMut in lru).
Contributor
There was a problem hiding this comment.
Code Review
This pull request updates dependencies to resolve security advisories. My review includes one high-severity suggestion regarding the newly added recursion limit in crates/autopilot/src/lib.rs, which may mask code complexity and should be investigated.
AryanGodara
approved these changes
Mar 24, 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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
Follow-up to #4286. Resolves additional
cargo auditwarnings and cleans up stale ignore entries.idnaandprotobuffrom ignore list — RUSTSEC-2024-0421 and RUSTSEC-2024-0437 are no longer triggered by current dependency versionslru 0.12.5from the tree, fixing RUSTSEC-2026-0002 (unsoundIterMut)After this PR,
cargo auditreports zero vulnerabilities and zero warnings. The remaining ignore entries are genuinely unfixable:rsa— no patch availablederivative/instant/paste— unmaintained, pinned by transitive depsmodel— false positive matching our local crate nameTest plan
cargo check --workspacepassescargo auditreports 0 vulnerabilities, 0 warnings