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" }