1 unstable release

0.3.3 Feb 5, 2023

#1293 in HTTP server

Download history 2/week @ 2024-01-25 1/week @ 2024-02-01 4/week @ 2024-02-08 10/week @ 2024-02-15 15/week @ 2024-02-22 24/week @ 2024-02-29 15/week @ 2024-03-07 7/week @ 2024-03-14 21/week @ 2024-03-28 19/week @ 2024-04-04 3/week @ 2024-04-11 45/week @ 2024-04-18

88 downloads per month

MIT license

315KB
6.5K SLoC

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 = "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.

Dependencies

~12–30MB
~463K SLoC