32 breaking releases

new 0.44.0 Apr 23, 2024
0.42.0 Mar 18, 2024
0.35.2 Dec 21, 2023
0.34.1 Nov 29, 2023
0.13.0 Mar 27, 2023

#1018 in HTTP server

Download history 6/week @ 2024-01-09 9/week @ 2024-01-23 9/week @ 2024-01-30 144/week @ 2024-02-13 13/week @ 2024-02-20 133/week @ 2024-02-27 194/week @ 2024-03-05 949/week @ 2024-03-12 55/week @ 2024-03-19 2/week @ 2024-03-26 159/week @ 2024-04-02 1/week @ 2024-04-09

281 downloads per month

Apache-2.0

30KB
485 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–34MB
~518K SLoC