Crates.io | warp |
lib.rs | warp |
version | 0.4.2 |
created_at | 2018-03-29 17:38:58.215096+00 |
updated_at | 2025-08-19 18:07:02.955354+00 |
description | serve the web at warp speeds |
homepage | |
repository | https://github.com/seanmonstar/warp |
max_upload_size | |
id | 58098 |
size | 358,862 |
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 = { version = "0.4", features = ["server"] }
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.