shuttle-tide 0.12.0

Service implementation to run a tide webserver on shuttle
docs.rs failed to build shuttle-tide-0.12.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-tide-0.56.0

Shuttle service integration for the Tide web framework.

Example

#[shuttle_runtime::main]
async fn tide() -> shuttle_tide::ShuttleTide<()> {
let mut app = tide::new();
app.with(tide::log::LogMiddleware::new());

app.at("/hello").get(|_| async { Ok("Hello, world!") });

Ok(app.into())
}