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
#[cfg(feature = "async_std")]
pub mod async_std;
#[cfg(feature = "async_smol")]
pub mod smol;
#[cfg(feature = "async_tokio")]
pub mod tokio;
pub mod shared;