From 1eff4e7021ba47a9986780657488fcf8b36c766b Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Sat, 15 Jul 2023 17:32:01 +0200 Subject: [PATCH] pin hyper-util to specific git rev --- examples/hyper-1-0/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hyper-1-0/Cargo.toml b/examples/hyper-1-0/Cargo.toml index c1eb9d7a38..f55e532a60 100644 --- a/examples/hyper-1-0/Cargo.toml +++ b/examples/hyper-1-0/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] axum = { path = "../../axum" } hyper = { version = "=1.0.0-rc.4", features = ["full"] } -hyper-util = { git = "https://github.com/hyperium/hyper-util", features = ["full"] } +hyper-util = { git = "https://github.com/hyperium/hyper-util", rev = "f898015", features = ["full"] } tokio = { version = "1.0", features = ["full"] } tower-http = { version = "0.4", features = ["trace"] } tower-hyper-http-body-compat = { version = "0.2", features = ["http1", "server"] }