From 92650dafcec5334e729f0c710e709913771538e8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 10 Mar 2024 05:09:10 +0000 Subject: [PATCH] fix(deps): update rust crate hyper to 1.2.0 --- Cargo.lock | 7 ++++--- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d70d192..8d998c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -336,9 +336,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", @@ -350,6 +350,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", + "smallvec", "tokio", "want", ] @@ -1150,7 +1151,7 @@ dependencies = [ name = "website-api-gateway" version = "0.1.0" dependencies = [ - "hyper 1.1.0", + "hyper 1.2.0", "reqwest", "serde", "tokio", diff --git a/Cargo.toml b/Cargo.toml index 668d0fb..78f7718 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hyper = { version = "1.1.0", features = ["full"] } +hyper = { version = "1.2.0", features = ["full"] } reqwest = { version = "0.11.24", features = ["json"] } serde = { version = "1.0.196", features = ["derive"] } tokio = { version = "1.36.0", features = ["full"] }