36 breaking releases

0.48.0 Oct 1, 2024
0.47.0 Jul 23, 2024
0.46.0 Jun 13, 2024
0.42.0 Mar 18, 2024
0.13.0 Mar 27, 2023

#1255 in HTTP server

Download history 77/week @ 2024-07-17 48/week @ 2024-07-24 3/week @ 2024-07-31 16/week @ 2024-09-11 9/week @ 2024-09-18 95/week @ 2024-09-25 80/week @ 2024-10-02 17/week @ 2024-10-09

202 downloads per month

Apache-2.0

38KB
681 lines

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("/").get(|_| async { Ok("Hello, world!") });

    Ok(app.into())
}

Dependencies

~23–37MB
~606K SLoC