45 breaking releases

0.57.0 Sep 11, 2025
0.56.0 Jul 2, 2025
0.55.0 May 21, 2025
0.53.0 Mar 12, 2025
0.13.0 Mar 27, 2023

#1803 in HTTP server

Download history 79/week @ 2025-07-28 68/week @ 2025-08-04 82/week @ 2025-08-11 183/week @ 2025-08-18 102/week @ 2025-08-25 148/week @ 2025-09-01 215/week @ 2025-09-08 123/week @ 2025-09-15 114/week @ 2025-09-22 114/week @ 2025-09-29 51/week @ 2025-10-06 42/week @ 2025-10-13 50/week @ 2025-10-20 74/week @ 2025-10-27 28/week @ 2025-11-03 22/week @ 2025-11-10

181 downloads per month
Used in rust-shield

Apache-2.0

67KB
888 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

~22–58MB
~1M SLoC