diff --git a/Cargo.lock b/Cargo.lock index 548ff1b1..81a1e09b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -863,9 +863,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[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", @@ -877,6 +877,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", + "smallvec", "tokio", "want", ] diff --git a/Cargo.toml b/Cargo.toml index 6b2d6f81..9c667ac4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ ratatui = { version = "0.26.1", default-features = false, features = [ "crossterm", ] } -hyper = { version = "1.0", features = ["client", "http1", "http2"] } +hyper = { version = "1.2", features = ["client", "http1", "http2"] } # native-tls native-tls = { version = "0.2.11", features = ["alpn"], optional = true }