build(deps): bump rustls from 0.23.22 to 0.23.23 (#4017)

Bumps [rustls](https://github.com/rustls/rustls) from 0.23.22 to
0.23.23.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="774214751b"><code>7742147</code></a>
unbuffered: introduce <code>PeerClosed</code> state</li>
<li><a
href="7abb149a3d"><code>7abb149</code></a>
tests/unbuffered: refactor</li>
<li><a
href="1963cc76a2"><code>1963cc7</code></a>
Bump version to 0.23.23</li>
<li><a
href="ad5a31b763"><code>ad5a31b</code></a>
tests: reuse SingleCertAndKey</li>
<li><a
href="591c0c1b6a"><code>591c0c1</code></a>
crypto: expose SingleCertAndKey</li>
<li><a
href="82e1688925"><code>82e1688</code></a>
client: use SingleCertAndKey for with_client_auth_cert()</li>
<li><a
href="b0cc4dfe3a"><code>b0cc4df</code></a>
crypto: add CertifiedKey::from_der()</li>
<li><a
href="be2865ad07"><code>be2865a</code></a>
crypto: simplify SingleCertAndKey construction with OCSP</li>
<li><a
href="82c3c2d179"><code>82c3c2d</code></a>
crypto: use From impl to construct SingleCertAndKey</li>
<li><a
href="27551e14f4"><code>27551e1</code></a>
Move SingleCertAndKey to crypto::signer</li>
<li>Additional commits viewable in <a
href="https://github.com/rustls/rustls/compare/v/0.23.22...v/0.23.23">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rustls&package-manager=cargo&previous-version=0.23.22&new-version=0.23.23)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
This commit is contained in:
Quentin Gliech
2025-02-13 09:04:43 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -5098,9 +5098,9 @@ dependencies = [
[[package]]
name = "rustls"
version = "0.23.22"
version = "0.23.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fb9263ab4eb695e42321db096e3b8fbd715a59b154d5c88d82db2175b681ba7"
checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395"
dependencies = [
"aws-lc-rs",
"log",

View File

@@ -259,7 +259,7 @@ version = "0.15.1"
# TLS stack
[workspace.dependencies.rustls]
version = "0.23.22"
version = "0.23.23"
# Use platform-specific verifier for TLS
[workspace.dependencies.rustls-platform-verifier]