diff --git a/Cargo.lock b/Cargo.lock index a827544d..e7ce1904 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1098,19 +1098,21 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.25.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "399c78f9338483cb7e630c8474b07268983c6bd5acee012e4211f9f7bb21b070" +checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c" dependencies = [ "futures-util", - "http 0.2.11", - "hyper 0.14.28", + "http 1.0.0", + "hyper 1.1.0", + "hyper-util", "log", "rustls", "rustls-native-certs", "rustls-pki-types", "tokio", "tokio-rustls", + "tower-service", ] [[package]] @@ -1153,6 +1155,8 @@ dependencies = [ "pin-project-lite", "socket2", "tokio", + "tower", + "tower-service", "tracing", ] diff --git a/Cargo.toml b/Cargo.toml index d74672a4..f3ffa9d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,6 +81,6 @@ leaky-bucket = "1.0.1" hyper = { version = "1.1", features = ["full"] } hyper-util = { version = "0.1.2", features = ["tokio"] } tokio-rustls = "0.25" -hyper-rustls = "0.25" +hyper-rustls = "0.26" http-body-util = "0.1.0" regex = "1.10.2"