http_io 0.2.0

A library with limited dependencies containing an HTTP client and server.
Documentation

http_io

Crate containing HTTP client and server. Designed to have limited dependencies, and eventually support #![no_std].

fn main -> http_io::error::Result<()> {
    let mut body = Vec::new();
    http_io::client::get("www.google.com", "/")?.read_to_end(&mut body)?;
    io::stdout().write(&body)?;
}