Is there a plan to support Http 3? #2636
-
SummaryAs the title axum versionmain HEAD |
Beta Was this translation helpful? Give feedback.
Answered by
jplatte
Mar 7, 2024
Replies: 1 comment
-
axum does not implement any version of the HTTP protocol itself, it just implements routing, request handling and a bunch of convenience things on top of that. This is the issue you should subscribe to to get news about HTTP/3 support in hyper: hyperium/hyper#1818 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
HaoYang670
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
axum does not implement any version of the HTTP protocol itself, it just implements routing, request handling and a bunch of convenience things on top of that.
axum::serve
is a very thin abstraction on top of thehyper
crate (and its sibling crates), and once hyper supports HTTP/3, axum will automatically support it as well.This is the issue you should subscribe to to get news about HTTP/3 support in hyper: hyperium/hyper#1818