39 releases

0.3.7 Apr 5, 2024
0.3.6 Sep 27, 2023
0.3.5 Apr 28, 2023
0.3.4 Mar 31, 2023
0.0.0 Mar 29, 2018

#8 in HTTP server

Download history 130745/week @ 2024-01-10 146380/week @ 2024-01-17 141618/week @ 2024-01-24 141289/week @ 2024-01-31 141853/week @ 2024-02-07 145175/week @ 2024-02-14 159729/week @ 2024-02-21 162547/week @ 2024-02-28 156909/week @ 2024-03-06 153408/week @ 2024-03-13 153990/week @ 2024-03-20 168576/week @ 2024-03-27 180453/week @ 2024-04-03 171477/week @ 2024-04-10 184582/week @ 2024-04-17 149668/week @ 2024-04-24

722,565 downloads per month
Used in 547 crates (460 directly)

MIT license

325KB
7K 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

~8–23MB
~319K SLoC