shuttle-warp

Crates.ioshuttle-warp
lib.rsshuttle-warp
version0.46.0
sourcesrc
created_at2023-03-14 12:27:24.455302
updated_at2024-06-13 10:10:11.258653
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: 1307

cargo fmt