shuttle-rocket

Crates.ioshuttle-rocket
lib.rsshuttle-rocket
version0.57.0
created_at2023-03-14 12:36:30.507895+00
updated_at2025-09-11 12:13:16.516017+00
descriptionService implementation to run a rocket webserver on shuttle
homepage
repositoryhttps://github.com/shuttle-hq/shuttle
max_upload_size
id809822
size79,808
(jonaro00)

documentation

README

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())
}
Commit count: 1549

cargo fmt