A Tokio aware, HTTP/3 implementation for Rust.
- HTTP/3 implementation.
- Implements the full HTTP/3 specifications.
- Implements RFC 9204 QPACK. It supports dynamic table.
- Works with different QUIC transport implementations.
- Passes HTTP/3 interoperability tests.
- Focus on performance, interoperability, and correctness.
- Continues the h3 codebase, tracking upstream changes.
To use http3, first add this to your Cargo.toml:
[dependencies]
http3 = "0.1.1"Next, add this to your crate:
use http3::client::Connection;
fn main() {
// ...
}Licensed under either of Apache License, Version 2.0 (LICENSE or http://www.apache.org/licenses/LICENSE-2.0).
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.