39 breaking releases

new 0.51.0 Jan 10, 2025
0.49.0 Nov 12, 2024
0.47.0 Jul 23, 2024
0.42.0 Mar 18, 2024
0.13.0 Mar 27, 2023

#1552 in HTTP server

Download history 6/week @ 2024-09-22 163/week @ 2024-09-29 23/week @ 2024-10-06 3/week @ 2024-10-13 113/week @ 2024-11-10 19/week @ 2024-11-17 1/week @ 2024-11-24 13/week @ 2024-12-01 36/week @ 2024-12-08 1/week @ 2024-12-15 212/week @ 2025-01-05

213 downloads per month

Apache-2.0

38KB
687 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

~24–38MB
~607K SLoC