diff --git a/Cargo.lock b/Cargo.lock index 2139d146..f3b1c0b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -621,7 +621,7 @@ dependencies = [ "http 1.1.0", "http-body-util", "humantime", - "hyper 1.1.0", + "hyper 1.2.0", "hyper-rustls 0.26.0", "hyper-util", "indicatif", @@ -696,7 +696,7 @@ dependencies = [ "headers 0.4.0", "http 1.1.0", "http-range-header", - "hyper 1.1.0", + "hyper 1.2.0", "hyper-util", "rcgen", "reqwest", @@ -753,7 +753,7 @@ dependencies = [ "dragonfly-client-core", "hex", "http-range-header", - "hyper 1.1.0", + "hyper 1.2.0", "openssl", "rcgen", "reqwest", @@ -1270,9 +1270,9 @@ dependencies = [ [[package]] name = "hyper" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75" +checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" dependencies = [ "bytes", "futures-channel", @@ -1284,6 +1284,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", + "smallvec", "tokio", "want", ] @@ -1310,7 +1311,7 @@ checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c" dependencies = [ "futures-util", "http 1.1.0", - "hyper 1.1.0", + "hyper 1.2.0", "hyper-util", "log", "rustls 0.22.2", @@ -1357,7 +1358,7 @@ dependencies = [ "futures-util", "http 1.1.0", "http-body 1.0.0", - "hyper 1.1.0", + "hyper 1.2.0", "pin-project-lite", "socket2", "tokio", diff --git a/Cargo.toml b/Cargo.toml index 4a9e39cb..55ed4b77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ thiserror = "1.0" dragonfly-api = "2.0.106" reqwest = { version = "0.11.25", features = ["stream", "native-tls", "rustls-tls"] } rcgen = { version = "0.12.1", features = ["x509-parser"] } -hyper = { version = "1.1", features = ["full"] } +hyper = { version = "1.2", features = ["full"] } hyper-util = { version = "0.1.2", features = ["client", "client-legacy", "tokio", "server-auto", "http1", "http2"] } hyper-rustls = { version = "0.26", features = [ "http1", "http2", "logging" ] } http-range-header = "0.4.0"