40 breaking releases

0.52.0 Feb 4, 2025
0.50.0 Jan 7, 2025
0.49.0 Nov 12, 2024
0.47.0 Jul 23, 2024
0.13.0 Mar 27, 2023

#1428 in HTTP server

Download history 121/week @ 2024-11-12 12/week @ 2024-11-19 2/week @ 2024-11-26 14/week @ 2024-12-03 34/week @ 2024-12-10 250/week @ 2025-01-07 9/week @ 2025-01-14 96/week @ 2025-02-04 1024/week @ 2025-02-11

1,121 downloads per month

Apache-2.0

46KB
793 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

~18–33MB
~503K SLoC