From c10b3c63094971e1dd6991bb9e0bab3e7723cfe7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 13 Mar 2026 17:00:10 +0000 Subject: [PATCH] chore(deps): update rust crate hyper to v1 --- Cargo.lock | 56 ++++++++++++++++++++++++++++++++++++++++++------------ Cargo.toml | 2 +- 2 files changed, 45 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fab56a2..554be77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -88,9 +88,9 @@ dependencies = [ "bytes", "futures-util", "headers", - "http", - "http-body", - "hyper", + "http 0.2.9", + "http-body 0.4.5", + "hyper 0.14.27", "itoa", "matchit", "memchr", @@ -118,8 +118,8 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", - "http-body", + "http 0.2.9", + "http-body 0.4.5", "mime", "rustversion", "tower-layer", @@ -666,7 +666,7 @@ dependencies = [ "base64", "bytes", "headers-core", - "http", + "http 0.2.9", "httpdate", "mime", "sha1", @@ -678,7 +678,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" dependencies = [ - "http", + "http 0.2.9", ] [[package]] @@ -719,6 +719,16 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + [[package]] name = "http-body" version = "0.4.5" @@ -726,10 +736,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.9", "pin-project-lite", ] +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http 1.4.0", +] + [[package]] name = "httparse" version = "1.8.0" @@ -758,8 +778,8 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.9", + "http-body 0.4.5", "httparse", "httpdate", "itoa", @@ -771,6 +791,18 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" +dependencies = [ + "bytes", + "http 1.4.0", + "http-body 1.0.1", + "tokio", +] + [[package]] name = "iana-time-zone" version = "0.1.58" @@ -1133,7 +1165,7 @@ dependencies = [ "env_logger", "flume", "futures-lite", - "hyper", + "hyper 1.8.1", "include_dir", "jsonwebtoken", "log", @@ -1820,7 +1852,7 @@ dependencies = [ "axum-core", "cookie", "futures-util", - "http", + "http 0.2.9", "parking_lot", "pin-project-lite", "tower-layer", diff --git a/Cargo.toml b/Cargo.toml index 86ea7b8..ae0ed54 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ license = "MIT" [workspace.dependencies] axum = { version = "0.6", features = ["headers"] } tower = "0.4" -hyper = "0.14" +hyper = "1.0" tokio = { version = "1.33", features = ["rt", "macros", "fs", "io-util"] } futures-lite = "2.2" flume = "0.11"