42 breaking releases

new 0.54.0 May 7, 2025
0.53.0 Mar 12, 2025
0.52.0 Feb 4, 2025
0.49.0 Nov 12, 2024
0.13.0 Mar 27, 2023

#621 in HTTP server

Download history 173/week @ 2025-01-09 2/week @ 2025-01-16 73/week @ 2025-01-30 24/week @ 2025-02-06 269/week @ 2025-02-13 6/week @ 2025-02-27 57/week @ 2025-03-06 73/week @ 2025-03-13

2,875 downloads per month

Apache-2.0

69KB
863 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

~19–33MB
~507K SLoC