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日 |
#706 在 HTTP服务器
每月825次下载
用于 rust-shield
Rocket Web框架的Shuttle服务集成
示例
use rocket::{get, routes};
#[get("/")]
fn index() -> &'static str {
"Hello, world!"
}
#[shuttle_runtime::main]
async fn rocket() -> shuttle_rocket::ShuttleRocket {
let rocket = rocket::build().mount("/", routes![index]);
Ok(rocket.into())
}