bump rustls-webpki from 0.102.8 to 0.103.13#7
Closed
ibigbug wants to merge 2 commits into
Closed
Conversation
- Update workspace webpki dependency version in Cargo.toml - Fix feature flag: webpki/aws_lc_rs → webpki/aws-lc-rs (renamed in 0.103) - Fix alg_id import: webpki::alg_id moved to pki_types::alg_id - Fix Error variant patterns: CertExpired/CertNotValidYet are now struct variants, CertNotValidForName is now a tuple variant Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- CrlExpired is now a struct variant, requires { .. } pattern
- Add new context variants (UnsupportedCrlSignatureAlgorithmForPublicKeyContext,
UnsupportedCrlSignatureAlgorithmContext, etc.) to pki_error/crl_error match arms
- Update tests to use non-deprecated context variants
- webpki::Error no longer implements Copy; clone when iterating test cases
- Add 'use alloc::vec' in tests module for no-std compatibility
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
Bumps
rustls-webpkifrom0.102.8to0.103.13to resolve a Dependabot security advisory in theclash-rsrepo.Changes
Cargo.toml: Updatewebpkiworkspace dep to0.103.13rustls/Cargo.toml: Fix feature flag:webpki/aws_lc_rs→webpki/aws-lc-rs(renamed in 0.103)rustls/src/crypto/{ring,aws_lc_rs}/sign.rs:alg_idmoved fromwebpki::alg_id→pki_types::alg_idrustls/src/webpki/mod.rs: Fix error variant patterns —CertExpired/CertNotValidYetare now struct variants ({ .. }),CertNotValidForNameis now a tuple variant ((_))