39 breaking releases
new 0.51.0 | Jan 10, 2025 |
---|---|
0.49.0 | Nov 12, 2024 |
0.47.0 | Jul 23, 2024 |
0.42.0 | Mar 18, 2024 |
0.13.0 | Mar 27, 2023 |
#1276 in HTTP server
127 downloads per month
38KB
698 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
~20–34MB
~532K SLoC