42 breaking releases
new 0.54.0 | May 7, 2025 |
---|---|
0.53.0 | Mar 12, 2025 |
0.52.0 | Feb 4, 2025 |
0.49.0 | Nov 12, 2024 |
0.13.0 | Mar 27, 2023 |
#1187 in HTTP server
2,943 downloads per month
61KB
875 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–27MB
~388K SLoC