mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-07 00:00:12 +02:00
Release axum, axum-core, and axum-debug (#591)
This commit is contained in:
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
- None.
|
||||
|
||||
# 0.1.1 (06. December, 2021)
|
||||
|
||||
- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
|
||||
|
||||
# 0.1.0 (02. December, 2021)
|
||||
|
||||
- Initial release.
|
||||
|
||||
@@ -8,7 +8,7 @@ license = "MIT"
|
||||
name = "axum-core"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1"
|
||||
|
||||
@@ -25,7 +25,7 @@ mod headers;
|
||||
pub use self::headers::Headers;
|
||||
|
||||
/// Type alias for [`http::Response`] whose body type defaults to [`BoxBody`], the most common body
|
||||
/// type used with Axum.
|
||||
/// type used with axum.
|
||||
pub type Response<T = BoxBody> = http::Response<T>;
|
||||
|
||||
/// Trait for generating responses.
|
||||
|
||||
Reference in New Issue
Block a user