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
2,143 downloads per month
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