41 breaking releases

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

#1239 in HTTP server

Download history 53/week @ 2024-11-13 9/week @ 2024-11-20 3/week @ 2024-11-27 16/week @ 2024-12-04 31/week @ 2024-12-11 52/week @ 2025-01-01 205/week @ 2025-01-08 2/week @ 2025-01-15 52/week @ 2025-01-29 44/week @ 2025-02-05 270/week @ 2025-02-12 6/week @ 2025-02-26

372 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

~19–33MB
~506K SLoC