From 0ff7a19764b7bbe8a14ef281c59e964d895d187a Mon Sep 17 00:00:00 2001 From: George Hahn Date: Mon, 25 Nov 2024 12:18:09 -0700 Subject: [PATCH] Explicitly enable http1 & http2 --- CHANGELOG.md | 1 + lading/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed57a416..e16827ce1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Changed - logrotate_fs is now behind a feature flag and not enabled in the default build. It remains enabled in the release artifact. +- The build now includes http1 and http2 support. Actual usage and availability may vary. ## [0.24.0] ## Added diff --git a/lading/Cargo.toml b/lading/Cargo.toml index 662364e3a..733826ece 100644 --- a/lading/Cargo.toml +++ b/lading/Cargo.toml @@ -37,7 +37,7 @@ futures = "0.3.31" fuser = { version = "0.15", optional = true } http = "0.2" http-serde = "1.1" -hyper = { workspace = true, features = ["client", "backports", "deprecated"] } +hyper = { workspace = true, features = ["backports", "client", "deprecated", "http1", "http2", "server"] } is_executable = "1.0.4" metrics = { workspace = true } metrics-exporter-prometheus = { workspace = true }