shuttle-warp

Crates.ioshuttle-warp
lib.rsshuttle-warp
version0.57.0
created_at2023-03-14 12:27:24.455302+00
updated_at2025-09-11 12:13:16.64394+00
descriptionService implementation to run a warp webserver on shuttle
homepage
repositoryhttps://github.com/shuttle-hq/shuttle
max_upload_size
id809810
size59,334
(jonaro00)

documentation

README

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())
}
Commit count: 1549

cargo fmt