40 breaking releases

0.52.0 Feb 4, 2025
0.50.0 Jan 7, 2025
0.49.0 Nov 12, 2024
0.47.0 Jul 23, 2024
0.13.0 Mar 27, 2023

#1428 in HTTP server

Download history 2/week @ 2024-10-23 69/week @ 2024-11-06 58/week @ 2024-11-13 11/week @ 2024-11-20 18/week @ 2024-11-27 25/week @ 2024-12-04 52/week @ 2024-12-11 2/week @ 2024-12-18 3/week @ 2024-12-25 51/week @ 2025-01-01 218/week @ 2025-01-08 5/week @ 2025-01-15 52/week @ 2025-01-29 80/week @ 2025-02-05

145 downloads per month

Apache-2.0

45KB
805 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

~14–26MB
~382K SLoC