From d87978c85cc2d7251069c0e3f52bfa04b8edf7f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 04:04:22 +0000 Subject: [PATCH] Update rustls requirement from 0.21.7 to 0.22.1 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.7...v/0.22.1) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- client/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index d9abb76b..dc7b0a68 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -31,7 +31,7 @@ fxhash = "0.2.1" downcast-rs = "1.1.1" quinn = { workspace = true } futures-util = "0.3.1" -rustls = { version = "0.21.7", features = ["dangerous_configuration"] } +rustls = { version = "0.22.1", features = ["dangerous_configuration"] } webpki = "0.22.0" hecs = { workspace = true } rcgen = { version = "0.11.0", default-features = false } diff --git a/server/Cargo.toml b/server/Cargo.toml index 702c1cfd..81d8a332 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -27,6 +27,6 @@ fxhash = "0.2.1" nalgebra = { workspace = true } libm = "0.2.6" slotmap = "1.0.6" -rustls = "0.21.7" +rustls = "0.22.1" rustls-pemfile = "1.0.0" save = { path = "../save" }