mirror of
https://github.com/tokio-rs/axum.git
synced 2025-04-26 13:56:22 +02:00
Enable the runtime feature of hyper when using tokio (#1671)
This commit is contained in:
parent
b6c282a2b7
commit
211de92d24
2 changed files with 4 additions and 1 deletions
|
@ -8,8 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
# Unreleased
|
||||
|
||||
- **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
|
||||
[#1671]: https://github.com/tokio-rs/axum/pull/1671
|
||||
|
||||
|
||||
# 0.6.1 (29. November, 2022)
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ matched-path = []
|
|||
multipart = ["dep:multer"]
|
||||
original-uri = []
|
||||
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"]
|
||||
ws = ["tokio", "dep:tokio-tungstenite", "dep:sha1", "dep:base64"]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue