barehttp 0.0.1

A minimal, explicit HTTP client for Rust with no_std support and blocking I/O
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod chunked;
#[cfg(feature = "cookie-jar")]
pub mod cookie;
pub mod framing;
mod headers;
mod http;
mod message;
pub mod response_reader;
pub mod status;
pub mod uri;
pub mod version;

#[cfg(test)]
pub mod tests;

pub use message::BodyReadStrategy;
pub use message::{RequestBuilder, Response};