Enabled HTTP/2 in axum; bumped version
parent
af9902f9f4
commit
5c5344d2d3
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "site-backend"
|
name = "site-backend"
|
||||||
version = "0.1.0"
|
version = "0.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ name = "site"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum = { version = "0.5.0" }
|
axum = { version = "0.5.0", features = ["http2"] }
|
||||||
hyper = { version = "0.14.18", features = ["full"] }
|
hyper = { version = "0.14.18", features = ["full"] }
|
||||||
tokio = { version = "1.17.0", features = ["full"] }
|
tokio = { version = "1.17.0", features = ["full"] }
|
||||||
tracing = "0.1.32"
|
tracing = "0.1.32"
|
||||||
|
|
Loading…
Reference in New Issue