Remove support for http2.

Nginx does not support http2 for upstream proxies because there is not much point for low-latency connections.
This commit is contained in:
Tom Alexander 2024-09-29 18:00:34 -04:00
parent 65c964b329
commit 69dd1ba156
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -38,7 +38,7 @@ default = ["local_trigger"]
local_trigger = []
[dependencies]
axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1", "http2", "json"] }
axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1", "json"] }
base64 = "0.22.1"
hmac = "0.12.1"
http-body-util = "0.1.2"