From d1ec44ac241c7a2e8188c2b45f118362dcbacc2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 22:14:29 +0000 Subject: [PATCH] Update rustls requirement from 0.21 to 0.23 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.10) --- 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..d17b4bb 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.23", features = ["dangerous_configuration"] } serde = { version = "1.0", features = ["derive"] } socket2 = "0.5" structopt = "0.3"