35个重大版本发布
0.47.0 | 2024年7月23日 |
---|---|
0.45.0 | 2024年5月13日 |
0.42.0 | 2024年3月18日 |
0.35.2 | 2023年12月21日 |
0.13.0 | 2023年3月27日 |
1484 在 HTTP服务器
每月128 次下载
31KB
503 行
Salvo web框架的Shuttle服务集成
示例
use salvo::prelude::*;
#[handler]
async fn hello_world(res: &mut Response) {
res.render(Text::Plain("Hello, world!"));
}
#[shuttle_runtime::main]
async fn salvo() -> shuttle_salvo::ShuttleSalvo {
let router = Router::new().get(hello_world);
Ok(router.into())
}
依赖关系
~26–40MB
~739K SLoC