6 releases

0.0.6 Oct 13, 2023
0.0.5 Jul 17, 2023
0.0.4 Mar 5, 2023
0.0.3 Sep 29, 2022

#324 in HTTP server

Download history 382/week @ 2023-12-11 293/week @ 2023-12-18 311/week @ 2023-12-25 414/week @ 2024-01-01 176/week @ 2024-01-08 171/week @ 2024-01-15 222/week @ 2024-01-22 75/week @ 2024-01-29 79/week @ 2024-02-05 105/week @ 2024-02-12 55/week @ 2024-02-19 184/week @ 2024-02-26 168/week @ 2024-03-04 236/week @ 2024-03-11 98/week @ 2024-03-18 169/week @ 2024-03-25

684 downloads per month

MIT license

58KB
1K SLoC

httpz

Code once, support every Rust webserver!

Discord Crates.io License

This project is a 🚧 work in progress 🚧. Currently it is designed around the goals of rspc but feel free to reach to me if you want to collaborate on using it in your own project.

Usage

    // Define your a single HTTP handler which is supported by all major Rust webservers.
let endpoint = GenericEndpoint::new(
    // Set URL prefix
    "/",
    // Set the supported HTTP methods
    [Method::GET, Method::POST],
    // Define the handler function
    |_req: Request| async move {
        Ok(Response::builder()
            .status(StatusCode::OK)
            .header("Content-Type", "text/html")
            .body(b"Hello httpz World!".to_vec())?)
    },
);

// Attach your generic endpoint to Axum
let app = axum::Router::new().route("/", endpoint.axum());

// Attach your generic endpoint to Actix Web
HttpServer::new({
    let endpoint = endpoint.actix();
    move || App::new().service(web::scope("/prefix").service(endpoint.mount()))
});

// and so on...

Check out the rest of the examples!

Features

  • Write your HTTP handler once and support Axum, Actix Web, Poem, Rocket, Warp and more.
  • Support for websockets on compatible webservers.

Projects using httpz

httpz is primarily designed to make life easier for library authors. It allows a library author to write and test a HTTP endpoint once and know it will work for all major Rust HTTP servers.

Libraries using httpz:

If you are interested in using httpz and have questions jump in the Discord!

Dependencies

~4–57MB
~799K SLoC