A super-easy, composable, web server framework for warp speeds.
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-04-03 11:08:30 +02:00
examples examples: cleanup unix socket file (#1137) 2025-08-31 06:31:27 -04:00
src chore: sync dependencies (monorepo) 2026-04-03 11:08:30 +02:00
tests feat: reimplement warp::addr::remote() filter (#1149) 2026-01-27 15:11:48 -05:00
.gitignore Add optional cookie value filter (#93) 2018-09-18 12:54:26 -07:00
Cargo.toml chore: sync dependencies (monorepo) 2026-03-31 00:05:16 +02:00
LICENSE chore: include only src files when packaging 2025-08-05 11:09:45 -04:00
README.md docs: update readme for 0.4 2025-08-05 11:02:38 -04:00

warp

crates.io Released API docs MIT licensed GHA Build Status Discord chat

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:

  • Path routing and parameter extraction
  • Header requirements and extraction
  • Query string deserialization
  • JSON and Form bodies
  • Multipart form data
  • Static Files and Directories
  • Websockets
  • Access logging
  • Gzip, Deflate, and Brotli compression

Since it builds on top of hyper, you automatically get:

  • HTTP/1
  • HTTP/2
  • Asynchronous
  • One of the fastest HTTP implementations
  • Tested and correct

Example

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.