From f0ef8ae29bf254d22eb4005eacf756f1367fc417 Mon Sep 17 00:00:00 2001 From: richard Date: Thu, 16 Jan 2025 12:54:44 -0800 Subject: [PATCH] Update low-level-rustls example - add http2 feature flag (#3179) Co-authored-by: richard --- examples/low-level-rustls/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/low-level-rustls/Cargo.toml b/examples/low-level-rustls/Cargo.toml index eace54a846..0cf1bc8782 100644 --- a/examples/low-level-rustls/Cargo.toml +++ b/examples/low-level-rustls/Cargo.toml @@ -8,7 +8,7 @@ publish = false axum = { path = "../../axum" } futures-util = { version = "0.3", default-features = false } hyper = { version = "1.0.0", features = ["full"] } -hyper-util = { version = "0.1" } +hyper-util = { version = "0.1", features = ["http2"] } tokio = { version = "1", features = ["full"] } tokio-rustls = "0.26" tower-service = "0.3.2"