vibeio-http 0.4.1

High-performance HTTP server primitives for the `vibeio` runtime
Documentation
//! QPACK (RFC 9204) header compression for HTTP/3.
//!
//! Encoder and decoder with full dynamic-table support, encoder/decoder
//! streams, and blocked-stream handling. The Huffman code and prefix-integer
//! representation are shared with HPACK via [`crate::hpack`].
//!
//! This module is consumed by the HTTP/3 layer (pending) and directly by the
//! fixture corpus in `tests/`; see `CUSTOM_HTTP3_IMPL.md`.

pub mod decoder;
pub mod encoder;
pub mod error;

pub use decoder::{Decoder, UnblockedSection};
pub use encoder::{EncodedSection, Encoder};
pub use error::QpackError;

pub(crate) mod static_table;
pub(crate) mod table;