Metadata-Version: 2.4
Name: httpdex-h3
Version: 0.1.0
Summary: HTTP/3 client via QUIC (quiche) with PyO3 bindings.
Author: Marcelo Trylesinski
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# httpdex-h3

HTTP/3 and QUIC bindings for the `httpdex` workspace.

`httpdex-h3` exposes the low-level HTTP/3 connection objects used by `httpdex-core`, with a native implementation backed by QUIC support from the Rust side of this repository.

## Highlights

- HTTP/3 connection support
- QUIC configuration via `QuicConfig`
- Native extension for performance-sensitive protocol work
- Small API intended for transport-layer integration

## Public API

- `H3Connection`
- `H3Event`
- `H3Header`
- `QuicConfig`

## Role In The Workspace

`httpdex-core` uses this package to implement HTTP/3 request/response handling.

