33 breaking releases

new 0.45.0 May 13, 2024
0.43.0 Apr 2, 2024
0.42.0 Mar 18, 2024
0.35.2 Dec 21, 2023
0.13.0 Mar 27, 2023

#1108 in HTTP server

Download history 9/week @ 2024-01-24 9/week @ 2024-01-31 146/week @ 2024-02-14 13/week @ 2024-02-21 159/week @ 2024-02-28 190/week @ 2024-03-06 949/week @ 2024-03-13 31/week @ 2024-03-20 90/week @ 2024-03-27 71/week @ 2024-04-03 1/week @ 2024-04-10 93/week @ 2024-04-17 44/week @ 2024-04-24 3/week @ 2024-05-01 113/week @ 2024-05-08

253 downloads per month

Apache-2.0

31KB
504 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

~20–35MB
~525K SLoC