From c5f05458161c3bdeeeeb27c127487be4e20158e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 22:43:29 +0000 Subject: [PATCH] Update rustls requirement from 0.21 to 0.22 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/compare/v/0.21.0...v/0.21.9) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c3df0c9..55db156 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ quinn = "0.10" quinn-proto = "0.10" rand_chacha = "0.3" rcgen = "0.11" -rustls = { version = "0.21", features = ["dangerous_configuration"] } +rustls = { version = "0.22", features = ["dangerous_configuration"] } serde = { version = "1.0", features = ["derive"] } socket2 = "0.5" structopt = "0.3"