From cd7b7185f81317e732742d663c4e1faaab52c8e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 20:45:19 +0000 Subject: [PATCH] Bump hyper-tls from 0.5.0 to 0.6.0 Bumps [hyper-tls](https://github.com/hyperium/hyper-tls) from 0.5.0 to 0.6.0. - [Commits](https://github.com/hyperium/hyper-tls/compare/v0.5.0...v0.6.0) --- updated-dependencies: - dependency-name: hyper-tls dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 9 ++++++--- josh-proxy/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 89cfbfc6..7a9618e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1673,15 +1673,18 @@ dependencies = [ [[package]] name = "hyper-tls" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ "bytes", - "hyper 0.14.32", + "http-body-util", + "hyper 1.7.0", + "hyper-util", "native-tls", "tokio", "tokio-native-tls", + "tower-service", ] [[package]] diff --git a/josh-proxy/Cargo.toml b/josh-proxy/Cargo.toml index cfe37764..e861f9c6 100644 --- a/josh-proxy/Cargo.toml +++ b/josh-proxy/Cargo.toml @@ -19,7 +19,7 @@ futures = { workspace = true } hyper = { version = "0.14.31", features = ["stream"] } hyper-reverse-proxy = { workspace = true } hyper-staticfile = "0.9.6" -hyper-tls = "0.5.0" +hyper-tls = "0.6.0" hyper_cgi = { path = "../hyper_cgi" } indoc = "2.0.5" josh = {path = "../josh-core" }