shuttle-rocket 0.13.0

Service implementation to run a rocket webserver on shuttle
docs.rs failed to build shuttle-rocket-0.13.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: shuttle-rocket-0.57.0

Shuttle service integration for the Rocket web framework.

Example

#[macro_use]
extern crate rocket;

# fn main() {
#[get("/")]
fn index() -> &'static str {
"Hello, world!"
}

#[shuttle_runtime::main]
async fn rocket() -> shuttle_rocket::ShuttleRocket {
let rocket = rocket::build().mount("/hello", routes![index]);

Ok(rocket.into())
}
# }