mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-07 00:00:12 +02:00
Enable the runtime feature of hyper when using tokio (#1671)
This commit is contained in:
@@ -8,8 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
- **added:** Add `body_text` and `status` methods to built-in rejections ([#1612])
|
- **added:** Add `body_text` and `status` methods to built-in rejections ([#1612])
|
||||||
|
- **added:** Enable the `runtime` feature of `hyper` when using `tokio` ([#1671])
|
||||||
|
|
||||||
[#1612]: https://github.com/tokio-rs/axum/pull/1612
|
[#1612]: https://github.com/tokio-rs/axum/pull/1612
|
||||||
|
[#1671]: https://github.com/tokio-rs/axum/pull/1671
|
||||||
|
|
||||||
|
|
||||||
# 0.6.1 (29. November, 2022)
|
# 0.6.1 (29. November, 2022)
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -22,7 +22,7 @@ matched-path = []
|
|||||||
multipart = ["dep:multer"]
|
multipart = ["dep:multer"]
|
||||||
original-uri = []
|
original-uri = []
|
||||||
query = ["dep:serde_urlencoded"]
|
query = ["dep:serde_urlencoded"]
|
||||||
tokio = ["dep:tokio", "hyper/server", "hyper/tcp", "tower/make"]
|
tokio = ["dep:tokio", "hyper/server", "hyper/tcp", "hyper/runtime", "tower/make"]
|
||||||
tower-log = ["tower/log"]
|
tower-log = ["tower/log"]
|
||||||
ws = ["tokio", "dep:tokio-tungstenite", "dep:sha1", "dep:base64"]
|
ws = ["tokio", "dep:tokio-tungstenite", "dep:sha1", "dep:base64"]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user