Crates.io | warp-fix-171 |
lib.rs | warp-fix-171 |
version | 0.3.4 |
source | src |
created_at | 2021-12-12 06:14:45.63244 |
updated_at | 2023-04-04 00:00:40.930264 |
description | A temporary patch for Warp until #924 is merged. |
homepage | |
repository | https://github.com/seanmonstar/warp |
max_upload_size | |
id | 496454 |
size | 483,728 |
WARNING: This fork is a temporary solution and will be deprecated as soon as this is fixed.
A super-easy, composable, web server framework for warp speeds.
The fundamental building block of warp
is the Filter
: they can be combined
and composed to express rich requirements on requests.
Thanks to its Filter
system, warp provides these out of the box:
Since it builds on top of hyper, you automatically get:
Add warp and Tokio to your dependencies:
tokio = { version = "1", features = ["full"] }
warp = "0.3"
And then get started in your main.rs
:
use warp::Filter;
#[tokio::main]
async fn main() {
// GET /hello/warp => 200 OK with body "Hello, warp!"
let hello = warp::path!("hello" / String)
.map(|name| format!("Hello, {}!", name));
warp::serve(hello)
.run(([127, 0, 0, 1], 3030))
.await;
}
For more information you can check the docs or the examples.