chore(deps): bump tokio-rustls from 0.25.0 to 0.26.0

Bumps [tokio-rustls](https://github.com/rustls/tokio-rustls) from 0.25.0 to 0.26.0.
- [Release notes](https://github.com/rustls/tokio-rustls/releases)
- [Commits](https://github.com/rustls/tokio-rustls/compare/v/0.25.0...v/0.26.0)

---
updated-dependencies:
- dependency-name: tokio-rustls
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-03-22 10:51:57 +00:00 committed by Matt Brubeck
parent 06aa136afd
commit a0ded1f05e
2 changed files with 8 additions and 7 deletions

13
Cargo.lock generated
View file

@ -34,7 +34,7 @@ dependencies = [
"percent-encoding", "percent-encoding",
"rcgen", "rcgen",
"tokio", "tokio",
"tokio-rustls 0.25.0", "tokio-rustls 0.26.0",
"url", "url",
] ]
@ -502,11 +502,12 @@ dependencies = [
[[package]] [[package]]
name = "rustls" name = "rustls"
version = "0.22.2" version = "0.23.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41" checksum = "1b3818d6051afeb6f88412bc8693cf8219799b2f2c2365f15e7534f0e198a16c"
dependencies = [ dependencies = [
"log", "log",
"once_cell",
"ring 0.17.8", "ring 0.17.8",
"rustls-pki-types", "rustls-pki-types",
"rustls-webpki", "rustls-webpki",
@ -704,11 +705,11 @@ dependencies = [
[[package]] [[package]]
name = "tokio-rustls" name = "tokio-rustls"
version = "0.25.0" version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
dependencies = [ dependencies = [
"rustls 0.22.2", "rustls 0.23.3",
"rustls-pki-types", "rustls-pki-types",
"tokio", "tokio",
] ]

View file

@ -22,7 +22,7 @@ mime_guess = "2.0"
once_cell = "1.19" once_cell = "1.19"
percent-encoding = "2.3" percent-encoding = "2.3"
rcgen = { version = "0.12.1", default-features = false, features = ["ring"] } rcgen = { version = "0.12.1", default-features = false, features = ["ring"] }
tokio-rustls = { version = "0.25.0", default-features = false, features = ["logging", "ring", "tls12"] } tokio-rustls = { version = "0.26.0", default-features = false, features = ["logging", "ring", "tls12"] }
tokio = { version = "1.36", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] } tokio = { version = "1.36", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] }
url = "2.5.0" url = "2.5.0"