fix(deps): update aws-lc-sys and rustls-webpki for 6 RUSTSEC advisories#83
Open
joshrotenberg wants to merge 1 commit into
Open
fix(deps): update aws-lc-sys and rustls-webpki for 6 RUSTSEC advisories#83joshrotenberg wants to merge 1 commit into
joshrotenberg wants to merge 1 commit into
Conversation
…,0045,0049,0098,0099,0104}
Cargo.lock-only update. Resolves six advisories that cargo-deny is
flagging on every CI Security Audit run:
aws-lc-sys 0.37.0 -> 0.40.0 (via aws-lc-rs 1.15.4 -> 1.16.3)
- RUSTSEC-2026-0044: X.509 Name Constraints Bypass via Wildcard/Unicode CN
- RUSTSEC-2026-0045: Timing Side-Channel in AES-CCM Tag Verification
rustls-webpki 0.103.9 -> 0.103.13
- RUSTSEC-2026-0049: CRLs not considered authoritative by Distribution Point
- RUSTSEC-2026-0098: Name constraints for URI names incorrectly accepted
- RUSTSEC-2026-0099: Name constraints accepted for wildcard certificates
- RUSTSEC-2026-0104: Reachable panic in CRL parsing
Bumping aws-lc-rs (rather than aws-lc-sys directly) is required because
aws-lc-rs 1.15.4 pins aws-lc-sys = "^0.37.0", which excludes the
patched 0.39+ range by semver. aws-lc-rs 1.16.3 relaxes that constraint.
`cargo deny check advisories` now passes.
Closes #82
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
Cargo.lock-only update fixing six RUSTSEC advisories that have been flagged by cargo-deny on every CI Security Audit run since the advisories were published.
aws-lc-rsaws-lc-sysrustls-webpkiWhy two crates in one PR
Bumping aws-lc-sys directly was blocked:
aws-lc-rs 1.15.4pinsaws-lc-sys = "^0.37.0"which excludes the patched 0.39+ range by semver. So we have to bumpaws-lc-rsto 1.16.3 to relax that constraint. Once that's done,rustls-webpkiadvisories also surface in cargo-deny output (they were behind aws-lc errors before — same Security Audit failure surface). Bumping both together keeps the Security Audit gate green in one shot.Pattern
Same shape as #57 (
fix: update quinn-proto to 0.11.14 (RUSTSEC-2026-0037)) — focused, lockfile-only, no source code changes.Test plan
cargo deny check advisories—advisories okcargo clippy --workspace --all-targets -- -D warnings— cleancargo test --workspace— all 288 tests passcargo fmt --all -- --check— cleanCargo.lockCloses #82