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日 |
1178 在 HTTP服务器
139 每月下载量
31KB
507 代码行
为Poem网络框架集成的Shuttle服务
示例
use poem::{get, handler, Route};
use shuttle_poem::ShuttlePoem;
#[handler]
fn hello_world() -> &'static str {
"Hello, world!"
}
#[shuttle_runtime::main]
async fn poem() -> ShuttlePoem<impl poem::Endpoint> {
let app = Route::new().at("/", get(hello_world));
Ok(app.into())
}
依赖
~21–33MB
~538K SLoC