37 breaking releases

0.49.0 Nov 12, 2024
0.47.0 Jul 23, 2024
0.42.0 Mar 18, 2024
0.35.2 Dec 21, 2023
0.13.0 Mar 27, 2023

#1322 in HTTP server

Download history 22/week @ 2024-09-14 5/week @ 2024-09-21 157/week @ 2024-09-28 25/week @ 2024-10-05 8/week @ 2024-10-12 109/week @ 2024-11-09 21/week @ 2024-11-16 3/week @ 2024-11-23 10/week @ 2024-11-30

143 downloads per month

Apache-2.0

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

~25–39MB
~640K SLoC