mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 21:01:45 +03:00
chore(deps): Bump rustls from 0.23.4 to 0.23.5 (#1312)
Bumps [rustls](https://github.com/rustls/rustls) from 0.23.4 to 0.23.5. <details> <summary>Commits</summary> <ul> <li><a href="14cb5d2eac
"><code>14cb5d2</code></a> Prepare 0.23.5</li> <li><a href="6e938bcfe8
"><code>6e938bc</code></a> complete_io: bail out if progress is impossible</li> <li><a href="2123576840
"><code>2123576</code></a> Regression test for <code>complete_io</code> infinite loop bug</li> <li><a href="f45664fbde
"><code>f45664f</code></a> Don't specially handle unauthenticated close_notify alerts</li> <li><a href="1f5146cdfa
"><code>1f5146c</code></a> docs: update SECURITY example</li> <li><a href="5ea02ed56f
"><code>5ea02ed</code></a> Return <code>Option</code> from <code>handshake_kind()</code></li> <li><a href="d2e1e668aa
"><code>d2e1e66</code></a> bogo: verify expected handshake kind</li> <li><a href="d8a2ae040c
"><code>d8a2ae0</code></a> Add API exposing shape of the performed handshake</li> <li><a href="740ca41773
"><code>740ca41</code></a> tests/api.rs: reformat</li> <li><a href="5ed2c9739d
"><code>5ed2c97</code></a> deps: update cargo semver compatible deps</li> <li>Additional commits viewable in <a href="https://github.com/rustls/rustls/compare/v/0.23.4...v/0.23.5">compare view</a></li> </ul> </details> <br /> [](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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/maplibre/martin/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
f670f9e88b
commit
4ac4ff2b20
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -2357,7 +2357,7 @@ dependencies = [
|
||||
"postgres-protocol",
|
||||
"pprof",
|
||||
"regex",
|
||||
"rustls 0.23.4",
|
||||
"rustls 0.23.5",
|
||||
"rustls-native-certs",
|
||||
"rustls-pemfile",
|
||||
"semver",
|
||||
@ -3533,9 +3533,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "rustls"
|
||||
version = "0.23.4"
|
||||
version = "0.23.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8c4d6d8ad9f2492485e13453acbb291dd08f64441b6609c491f1c2cd2c6b4fe1"
|
||||
checksum = "afabcee0551bd1aa3e18e5adbf2c0544722014b899adb31bd186ec638d3da97e"
|
||||
dependencies = [
|
||||
"aws-lc-rs",
|
||||
"log",
|
||||
@ -4502,7 +4502,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "04fb792ccd6bbcd4bba408eb8a292f70fc4a3589e5d793626f45190e6454b6ab"
|
||||
dependencies = [
|
||||
"ring",
|
||||
"rustls 0.23.4",
|
||||
"rustls 0.23.5",
|
||||
"tokio",
|
||||
"tokio-postgres",
|
||||
"tokio-rustls 0.26.0",
|
||||
@ -4526,7 +4526,7 @@ version = "0.26.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
|
||||
dependencies = [
|
||||
"rustls 0.23.4",
|
||||
"rustls 0.23.5",
|
||||
"rustls-pki-types",
|
||||
"tokio",
|
||||
]
|
||||
|
@ -63,7 +63,7 @@ pprof = { version = "0.13", features = ["flamegraph", "criterion"] }
|
||||
pretty_assertions = "1"
|
||||
regex = "1"
|
||||
rstest = "0.19"
|
||||
rustls = "0.23.4"
|
||||
rustls = "0.23.5"
|
||||
# ring feature does not require NASM windows executable, but works slower
|
||||
#rustls = { version = "0.23", default-features = false, features = ["logging", "std", "tls12", "ring"] }
|
||||
rustls-native-certs = "0.7"
|
||||
|
Loading…
Reference in New Issue
Block a user