From a4a2ee12144394e9d6f81e96217b08353a094316 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 07:50:42 +0000 Subject: [PATCH] Update tokio-rustls requirement from 0.23 to 0.26 Updates the requirements on [tokio-rustls](https://github.com/rustls/tokio-rustls) to permit the latest version. - [Release notes](https://github.com/rustls/tokio-rustls/releases) - [Commits](https://github.com/rustls/tokio-rustls/compare/v/0.23.0...v/0.26.0) --- updated-dependencies: - dependency-name: tokio-rustls dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- gotham/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index 4ecc8cd8..0ad2d2fd 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -51,7 +51,7 @@ serde = { version = "1.0.186", features = ["derive"] } thiserror = "1.0.2" time = { version = "0.3.4", default-features = false, features = ["std", "formatting", "macros"] } tokio = { version = "1.11.0", features = ["net", "rt-multi-thread", "time", "fs", "io-util"] } -tokio-rustls = { version = "0.23", optional = true } +tokio-rustls = { version = "0.26", optional = true } uuid = { version = "1.0", features = ["v4"] } [dev-dependencies]