hwire 0.2.5

An HTTP library written in Rust
docs.rs failed to build hwire-0.2.5
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

hwire

CI License Crates.io

An HTTP library written in Rust.

Features

  • HTTP/1 and HTTP/2 implementations.
  • Optional HTTP/3 over QUIC implementations.
  • Streaming bodies and trailers with backpressure.
  • HTTP Upgrade and CONNECT tunnels, including HTTP/2 Extended CONNECT.
  • Pluggable executor, timer and transport interfaces implemented by the caller.
  • Optional tracing with no default Cargo features.
  • Tested against Hyper servers.

Usage

Add the protocol crate to Cargo.toml:

[dependencies]

hwire = "0.2"

The client APIs are organized by protocol:

use hwire::conn::{http1, http2};

fn main() {
    // ...
}

Documentation

License

Licensed under either of Apache License, Version 2.0 (LICENSE or http://www.apache.org/licenses/LICENSE-2.0).

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

Accolades

A hard fork of Hyper.