fix(deps): patch aws-lc-sys, rustls-webpki, and diesel - #119
Merged
Conversation
- Bump aws-lc-sys to 0.44.0 (was 0.38.0, via aws-lc-rs 1.18.0) Fixes GHSA-9f94-5g5w-gf6r, GHSA-394x-vwmw-crm3 - Disable aws-sdk-dynamodb's default "rustls" feature (legacy hyper-0.14 client), keeping only "default-https-client" and "rt-tokio". That legacy feature pulled in rustls 0.21 -> rustls-webpki 0.101.7 alongside the modern rustls 0.23 stack; disabling it collapses the build to a single rustls-webpki 0.103.9 resolution. Fixes GHSA-82j2-j2ch-gfr8 - Bump diesel to 2.3.12 (was 2.2.12) Fixes GHSA-h5x4-m2qf-r4f2 Signed-off-by: Toby Hede <toby@cipherstash.com>
…onversion Signed-off-by: Toby Hede <toby@cipherstash.com>
0.103.9 fell just short of a newer Medium-severity finding requiring >= 0.103.10. Signed-off-by: Toby Hede <toby@cipherstash.com>
yujiyokoo
approved these changes
Aug 17, 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
aws-lc-sys0.38.0 -> 0.44.0 (viaaws-lc-rs1.18.0)Fixes GHSA-9f94-5g5w-gf6r, GHSA-394x-vwmw-crm3
rustls-webpkiby disablingaws-sdk-dynamodb's defaultrustlsfeature (a legacy hyper-0.14-based client), keeping onlydefault-https-client+rt-tokio. The legacy feature was pulling inrustls 0.21->rustls-webpki 0.101.7alongside the modernrustls 0.23stack the rest of the dependency graph already uses; disabling it collapses resolution to a singlerustls-webpki 0.103.9.Fixes GHSA-82j2-j2ch-gfr8
diesel2.2.12 -> 2.3.12 (transitive, viacts-common)Fixes GHSA-h5x4-m2qf-r4f2
Test plan
cargo build --all-featuressucceedscargo test --all-targets— 27/28 pass; the 1 failure (test_unseal_all_empty, missingworkspace_crnconfig) reproduces identically on unpatchedmain, confirmed pre-existing/environmental, not a regressioncargo test --doc— 18/18 passcargo tree -i rustls-webpkiconfirms a single resolved version (0.103.9) after the fix