httpageboy 1.0.18

A lightweight library for handling raw HTTP request/response transmission. Good base for APIs. Supports both synchronous and asynchronous programming models.
Documentation
1
2
3
4
5
6
7
pub mod shared;

#[cfg(feature = "sync")]
pub mod sync;

#[cfg(any(feature = "async_tokio", feature = "async_smol", feature = "async_std"))]
pub mod r#async;