From 7c31f76b0272031efabc7bda29ee12967d67ed10 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Mon, 28 Aug 2023 15:36:06 +0200 Subject: [PATCH] fix: Update hyper-rustls to fix RUSTSEC-2023-0052 The update fixes a denial of service in the transitive dependency webpki --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 56abb5bc0..6653adbb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -127,7 +127,7 @@ thiserror = "1.0.24" http-types = { version = "2.12.0", default-features = false } hyper = { version = "0.14", default-features = false, features = ["http1", "http2", "client", "tcp"], optional = true } hyper-tls = { version = "0.5", optional = true } -hyper-rustls = { version = "0.23", default-features = false, features = ["http1", "http2", "tls12", "logging"], optional = true } +hyper-rustls = { version = "0.24", default-features = false, features = ["http1", "http2", "tls12", "logging"], optional = true } serde = {version = ">=1.0.79", features = ["derive"] } # we use `serde(other)` which was introduced in 1.0.79 serde_json = "1.0" serde_qs = "0.10.1"