sec_http3/
lib.rs

1//! HTTP/3 client and server
2#![deny(missing_docs, clippy::self_named_module_files)]
3#![allow(clippy::derive_partial_eq_without_eq)]
4
5pub mod client;
6mod config;
7pub mod error;
8pub mod ext;
9pub mod quic;
10pub(crate) mod request;
11pub mod server;
12
13pub use error::Error;
14
15pub mod sec_http3_quinn;
16#[allow(missing_docs)]
17pub mod webtransport;
18
19mod buf;
20
21mod connection;
22mod frame;
23mod proto;
24mod stream;
25
26#[allow(dead_code)]
27mod qpack;
28#[cfg(test)]
29mod tests;
30#[cfg(test)]
31extern crate self as h3;