harp 0.1.0

Minimalist Rust HTTP toolkit (client-only).
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! HTTP response handling

#[cfg(feature = "alloc")]
mod body;
#[cfg(feature = "std")]
mod reader;

#[cfg(feature = "alloc")]
pub use self::body::Body;
#[cfg(feature = "std")]
pub use self::reader::Reader;