diff --git a/Cargo.lock b/Cargo.lock index f6c8b76..e4df860 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -394,7 +394,7 @@ dependencies = [ "diesel_migrations", "futures", "http-body-util", - "hyper 1.1.0", + "hyper 1.2.0", "hyper-rustls", "hyper-util", "isocountry", @@ -807,9 +807,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", @@ -820,6 +820,7 @@ dependencies = [ "httparse", "itoa", "pin-project-lite", + "smallvec", "tokio", "want", ] @@ -832,7 +833,7 @@ checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c" dependencies = [ "futures-util", "http 1.0.0", - "hyper 1.1.0", + "hyper 1.2.0", "hyper-util", "rustls", "rustls-pki-types", @@ -853,7 +854,7 @@ dependencies = [ "futures-util", "http 1.0.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 6f8fe4e..bb05fbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ version = "2.1.4" features = ["sqlite"] [dependencies.hyper] -version = "1.1.0" +version = "1.2.0" features = ["client"] [dependencies.hyper-rustls]