36 breaking releases

0.48.0 Oct 1, 2024
0.47.0 Jul 23, 2024
0.46.0 Jun 13, 2024
0.42.0 Mar 18, 2024
0.13.0 Mar 27, 2023

#1339 in HTTP server

Download history 115/week @ 2024-07-19 19/week @ 2024-07-26 3/week @ 2024-08-02 1/week @ 2024-08-30 22/week @ 2024-09-13 15/week @ 2024-09-20 170/week @ 2024-09-27 41/week @ 2024-10-04 21/week @ 2024-10-11 8/week @ 2024-10-18

242 downloads per month

Apache-2.0

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

~18–31MB
~487K SLoC