From 5c5344d2d39a525f6ad6db3779c50ba103d7934b Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Sun, 3 Apr 2022 09:54:01 +0200 Subject: [PATCH] Enabled HTTP/2 in axum; bumped version --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b76835c..2f17b4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "site-backend" -version = "0.1.0" +version = "0.1.2" edition = "2021" publish = false @@ -11,7 +11,7 @@ name = "site" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -axum = { version = "0.5.0" } +axum = { version = "0.5.0", features = ["http2"] } hyper = { version = "0.14.18", features = ["full"] } tokio = { version = "1.17.0", features = ["full"] } tracing = "0.1.32"