From 1bde2764bc4c32f9fa9aa85571ce6a93b384d145 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 17:43:12 +0000 Subject: [PATCH] Bump rustls from 0.22.2 to 0.23.0 Bumps [rustls](https://github.com/rustls/rustls) from 0.22.2 to 0.23.0. - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.22.2...v/0.23.0) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 09dd408..0ff8c57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -646,7 +646,7 @@ dependencies = [ "hyper", "hyper-util", "log", - "rustls", + "rustls 0.22.2", "rustls-native-certs", "rustls-pki-types", "tokio", @@ -1180,6 +1180,20 @@ dependencies = [ "zeroize", ] +[[package]] +name = "rustls" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53e56521f047352df0db9a3c5aafc573eeb8909ab80f9d4cba201d8d73539009" +dependencies = [ + "log", + "once_cell", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + [[package]] name = "rustls-native-certs" version = "0.7.0" @@ -1242,7 +1256,7 @@ dependencies = [ "rand_core", "rcgen", "rsa", - "rustls", + "rustls 0.23.0", "rustls-pki-types", "rustls-webpki", "sec1", @@ -1565,7 +1579,7 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" dependencies = [ - "rustls", + "rustls 0.22.2", "rustls-pki-types", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml index 187225f..8706aa4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ pkcs8 = { version = "0.10.2", features = ["pem", "pkcs5"] } pki-types = { package = "rustls-pki-types", version = "1.0.1", default-features = false } rand_core = "0.6.4" rsa = { version = "0.9.2", features = ["sha2"] } -rustls = { version = "0.22.1", default-features = false } +rustls = { version = "0.23.0", default-features = false } sec1 = { version = "0.7.3", features = ["pkcs8", "pem"] } sha2 = "0.10.7" signature = "2.1.0"