路由
从 0.3 开始,axum 的路由的导入路径发生了改变。IntoResponse
从 0.4 开始,实现`IntoResponse`不需要`Body`和`BodyError`。静态资源
0.3 的静态资源有 BUG,0.4 终于恢复。deadpool-postgres
deadpool-postgres 0.10开始,需要手动开启`serde` feature中文乱码及utf-8
axum 0.4开始已经默认带上`charset=utf-8`响应头,中文不再乱码。状态共享
从 0.4.7 开始,`axum::AddExtensionLayer` 已标记为“过时(Deprecated)”config 重大改变
从 0.12 开始,config 的API发生重大改变
IntoResponse
- 683929
- 2021-12-08 21:20:05
从 0.4 开始,实现IntoResponse
不需要Body
和BodyError
。
0.2~0.3 版本
impl IntoResponse for AppError {
fn into_response(self) -> axum::http::Response{
self.message.into_response()
}
}