#warp #shuttle-service

shuttle-warp

Service implementation to run a warp webserver on shuttle

45 breaking releases

0.57.0 Sep 11, 2025
0.56.0 Jul 2, 2025
0.55.0 May 21, 2025
0.53.0 Mar 12, 2025
0.13.0 Mar 27, 2023

#996 in HTTP server

Download history 14/week @ 2025-09-17 10/week @ 2025-09-24 12/week @ 2025-10-01 1/week @ 2025-10-08 2/week @ 2025-10-22

2,143 downloads per month

Apache-2.0

62KB
887 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

~19–38MB
~438K SLoC