路由
从 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发生重大改变
deadpool-postgres
- 693644
- 2021-12-08T21:21:53+08:00
deadpool-postgres 0.10开始,需要手动开启serde
feature。否则以下代码将报错:error[E0277]: the trait bound "deadpool_postgres::Config: config::_::_serde::Deserialize<'_>" is not satisfied
#[derive(Deserialize)]
pub struct Config {
pub pg: deadpool_postgres::Config,
}
deadpool-postgres = "0.9"