33 breaking releases

new 0.45.0 May 13, 2024
0.43.0 Apr 2, 2024
0.42.0 Mar 18, 2024
0.35.2 Dec 21, 2023
0.13.0 Mar 27, 2023

#572 in HTTP server

Download history 89/week @ 2024-01-22 63/week @ 2024-01-29 39/week @ 2024-02-05 221/week @ 2024-02-12 97/week @ 2024-02-19 205/week @ 2024-02-26 483/week @ 2024-03-04 1026/week @ 2024-03-11 251/week @ 2024-03-18 152/week @ 2024-03-25 435/week @ 2024-04-01 77/week @ 2024-04-08 73/week @ 2024-04-15 299/week @ 2024-04-22 142/week @ 2024-04-29 339/week @ 2024-05-06

860 downloads per month
Used in rust-shield

Apache-2.0

32KB
517 lines

Shuttle service integration for the Rocket web framework

Example

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())
}

Dependencies

~23–56MB
~1M SLoC