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

#32 in HTTP server

Download history 249339/week @ 2024-08-26 228071/week @ 2024-09-02 265961/week @ 2024-09-09 220118/week @ 2024-09-16 252042/week @ 2024-09-23 153758/week @ 2024-09-30 128238/week @ 2024-10-07 150207/week @ 2024-10-14 150766/week @ 2024-10-21 140321/week @ 2024-10-28 127327/week @ 2024-11-04 139829/week @ 2024-11-11 157280/week @ 2024-11-18 123814/week @ 2024-11-25 159117/week @ 2024-12-02 151240/week @ 2024-12-09

597,695 downloads per month
Used in 601 crates (497 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–20MB
~308K SLoC