deboa 0.1.0-beta.3

A friendly rest client on top of hyper.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Core HTTP client implementation for Deboa.
//!
//! This module provides the main HTTP client functionality, including connection management
//! and request/response handling. It's the central component for making HTTP requests
//! in the Deboa library.

/// Connection management functionality for the Deboa HTTP client.
pub mod conn;

/// Serialization and deserialization traits for the Deboa HTTP client.
pub mod serde;

#[cfg(feature = "http1")]
pub(crate) mod http1;
#[cfg(feature = "http2")]
pub(crate) mod http2;
#[cfg(feature = "http3")]
pub(crate) mod http3;