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

#1393 in HTTP server

Download history 1/week @ 2024-08-31 23/week @ 2024-09-14 16/week @ 2024-09-21 180/week @ 2024-09-28 30/week @ 2024-10-05 22/week @ 2024-10-12 6/week @ 2024-10-19 110/week @ 2024-11-09 24/week @ 2024-11-16 6/week @ 2024-11-23 30/week @ 2024-11-30

170 downloads per month

Apache-2.0

38KB
692 lines

Shuttle service integration for the Warp web framework

Example

use warp::Filter;
use warp::Reply;

#[shuttle_runtime::main]
async fn warp() -> shuttle_warp::ShuttleWarp<(impl Reply,)> {
    let route = warp::any().map(|| "Hello, World!");
    Ok(route.boxed().into())
}

Dependencies

~20–33MB
~526K SLoC