From b93475f116f5360a39942a2008e102a8a82e8208 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 12:44:54 +0000 Subject: [PATCH] build(deps): bump tokio-rustls from 0.23.4 to 0.24.0 Bumps [tokio-rustls](https://github.com/rustls/tokio-rustls) from 0.23.4 to 0.24.0. - [Commits](https://github.com/rustls/tokio-rustls/commits) --- updated-dependencies: - dependency-name: tokio-rustls dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 44 ++++++-------------------------------------- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 39 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b75759..27141a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -271,9 +271,9 @@ checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" dependencies = [ "http", "hyper", - "rustls 0.21.1", + "rustls", "tokio", - "tokio-rustls 0.24.0", + "tokio-rustls", ] [[package]] @@ -446,14 +446,14 @@ dependencies = [ "once_cell", "percent-encoding", "pin-project-lite", - "rustls 0.21.1", + "rustls", "rustls-native-certs", "rustls-pemfile", "serde", "serde_json", "serde_urlencoded", "tokio", - "tokio-rustls 0.24.0", + "tokio-rustls", "tower-service", "url", "wasm-bindgen", @@ -477,17 +477,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "rustls" -version = "0.20.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" -dependencies = [ - "ring", - "sct", - "webpki", -] - [[package]] name = "rustls" version = "0.21.1" @@ -774,24 +763,13 @@ dependencies = [ "syn 1.0.107", ] -[[package]] -name = "tokio-rustls" -version = "0.23.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" -dependencies = [ - "rustls 0.20.8", - "tokio", - "webpki", -] - [[package]] name = "tokio-rustls" version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5" dependencies = [ - "rustls 0.21.1", + "rustls", "tokio", ] @@ -851,7 +829,7 @@ dependencies = [ "sha2", "simple_logger", "tokio", - "tokio-rustls 0.23.4", + "tokio-rustls", ] [[package]] @@ -1002,16 +980,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "webpki" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" -dependencies = [ - "ring", - "untrusted", -] - [[package]] name = "winapi" version = "0.3.9" diff --git a/Cargo.toml b/Cargo.toml index 5907841..b28d004 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ authors = ["Irohaede "] [dependencies] bytes = "1.3" tokio = { version = "1.26", features = ["macros", "net", "io-util", "sync", "rt"] } -tokio-rustls = { version = "0.23", default-features = false, features = ["tls12"] } +tokio-rustls = { version = "0.24", default-features = false, features = ["tls12"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sha2 = { version = "0.10", default-features = false }