http_io 0.1.0

A library with limited dependencies containing an HTTP client and server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# http_io

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

```rust
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)?;
}
```