From 1047fddb49b028e7136dd1fc40c07647429ad89a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 19:25:32 +0000 Subject: [PATCH] Update rustls requirement from =0.22.0-alpha.6 to =0.22.0 Updates the requirements on [rustls](https://github.com/rustls/rustls) to permit the latest version. - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/commits) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 80126d5..01423ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ hyper = { version = "0.14", default-features = false, features = ["client"] } log = { version = "0.4.4", optional = true } pki-types = { package = "rustls-pki-types", version = "0.2" } rustls-native-certs = { version = "=0.7.0-alpha.3", optional = true } -rustls = { version = "=0.22.0-alpha.6", default-features = false } +rustls = { version = "=0.22.0", default-features = false } tokio = "1.0" tokio-rustls = { version = "=0.25.0-alpha.4", default-features = false } webpki-roots = { version = "=0.26.0-alpha.2", optional = true } @@ -24,7 +24,7 @@ futures-util = { version = "0.3", default-features = false } [dev-dependencies] hyper = { version = "0.14", features = ["full"] } -rustls = { version = "=0.22.0-alpha.6", default-features = false, features = ["tls12"] } +rustls = { version = "=0.22.0", default-features = false, features = ["tls12"] } rustls-pemfile = "=2.0.0-alpha.2" tokio = { version = "1.0", features = ["io-std", "macros", "net", "rt-multi-thread"] }