Skip to content

Commit

Permalink
HTTP/2 support. (#10)
Browse files Browse the repository at this point in the history
Enable HTTP/2 support for Axum, so that we can make use of request
multiplexing from the engine.
  • Loading branch information
SamirTalwar authored May 14, 2024
1 parent 4e0554c commit 3a205dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ndc-models = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.1.2" }
ndc-test = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.1.2", optional = true }

async-trait = "0.1.79"
axum = "0.6.20"
axum = { version = "0.6.20", features = ["http2"] }
axum-extra = "0.8.0"
bytes = "1.6.0"
clap = { version = "4.5.4", features = ["derive", "env"] }
Expand Down

0 comments on commit 3a205dd

Please sign in to comment.