From cf26bb4b0ba156993bbb36f914c324c319c277af Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 20 Dec 2023 21:14:31 +0100 Subject: [PATCH] use published version of hyper and hyper-util --- Cargo.toml | 4 ---- axum/Cargo.toml | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 17d2c4402b7..a68aaab16a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,3 @@ default-members = ["axum", "axum-*"] # Example has been deleted, but README.md remains exclude = ["examples/async-graphql"] resolver = "2" - -[patch.crates-io] -hyper = { git = "https://github.com/hyperium/hyper", rev = "cf68ea902749e" } -hyper-util = { git = "https://github.com/hyperium/hyper-util", rev = "64f896695c0f1" } diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 237439d574a..f928a97a7f7 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -53,8 +53,8 @@ tower-service = "0.3" # optional dependencies axum-macros = { path = "../axum-macros", version = "0.4.0", optional = true } base64 = { version = "0.21.0", optional = true } -hyper = { version = "1.0.0", optional = true } -hyper-util = { version = "0.1.1", features = ["tokio", "server", "server-auto"], optional = true } +hyper = { version = "1.1.0", optional = true } +hyper-util = { version = "0.1.2", features = ["tokio", "server", "server-auto"], optional = true } multer = { version = "2.0.0", optional = true } serde_json = { version = "1.0", features = ["raw_value"], optional = true } serde_path_to_error = { version = "0.1.8", optional = true }