shuttle-warp

Crates.ioshuttle-warp
lib.rsshuttle-warp
version0.48.0
sourcesrc
created_at2023-03-14 12:27:24.455302
updated_at2024-10-01 14:36:48.621703
descriptionService implementation to run a warp webserver on shuttle
homepage
repositoryhttps://github.com/shuttle-hq/shuttle
max_upload_size
id809810
size2,836
(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: 1381

cargo fmt