| Crates.io | h3x |
| lib.rs | h3x |
| version | 0.1.0 |
| created_at | 2025-12-19 10:09:26.614612+00 |
| updated_at | 2025-12-29 08:19:29.012236+00 |
| description | High-performance zero-copy DHTTP/3 implementation |
| homepage | |
| repository | https://github.com/genmeta/h3x |
| max_upload_size | |
| id | 1994501 |
| size | 469,931 |
High-performance asynchronous DHTTP/3 implementation in Rust.
gm-quic implementation, featuring efficient transmission, robust authentication capabilities, and high extensibility.⚠️ Currently, h3x is in the early stages of development, and the API may undergo significant changes.
h3x integrates gm_quic by default. Initiate QUIC connections via QuicClient and listen QUIC connections via QuicListeners.
use gm_quic::prelude::{BindUri, handy::ToCertificate};
async fn client_example() -> Result<(), Box<dyn std::error::Error>> {
let mut roots = rustls::RootCertStore::empty();
roots.add_parsable_certificates(
include_bytes!("tests/keychain/localhost/ca.cert").to_certificate(),
);
let h3_client = h3x::client::builder()
.with_root_certificates(roots)
.without_identity()?
.build();
// Initiate GET request
// The request stream is automatically closed when dropped
let (_, mut response) = h3_client
.new_request()
.get("localhost:4433/hello_world".parse()?)
.await?;
// Check response status code
assert_eq!(response.status(), http::StatusCode::OK);
let text = response.read_to_string().await?;
println!("Response: {:?}", text);
Ok(())
}
async fn server_example() -> Result<(), Box<dyn std::error::Error>> {
let mut app = h3x::server::builder()
.without_client_cert_verifier()?
.build();
let hello_world = async |request: &mut h3x::server::Request,
response: &mut h3x::server::Response| {
response
.set_status(http::StatusCode::OK)
.set_body(&b"Hello, World!"[..]);
};
app.add_server(
"localhost",
include_bytes!("tests/keychain/localhost/server.cert"),
include_bytes!("tests/keychain/localhost/server.key"),
None,
[BindUri::from("inet://[::1]:4433")],
h3x::server::Router::new().get("/hello_world", hello_world),
)?
.run()
.await;
Ok(())
}