hpx 2.5.7

High Performance HTTP Client
Documentation
//! HTTP Client protocol implementation and low level utilities.

mod common;
mod dispatch;
mod error;
pub(crate) use self::error::BoxError;
mod proto;

pub mod body;
pub mod conn;
pub mod ext;
#[cfg(feature = "http1")]
pub mod http1;
#[cfg(feature = "http2")]
pub mod http2;
#[cfg(feature = "http3")]
pub mod http3;
pub mod rt;
pub mod upgrade;

pub use self::error::{Error, Result};