async-fetch 0.1.1

Asynchronous HTTP client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
> Asynchronous HTTP client.

This crate provides a simple HTTP client and is built on top of [async-std](https://github.com/async-rs/async-std).

* Fully streaming requests and responses
* TLS/SSL enabled by default
* Relay through HTTP proxy or UNIX socket

**Example:**

```rs
async_fetch::Request;

let mut req = Request::parse_url("https://domain.com").unwrap();
let mut res = req.send().await?;
let data = res.recv().await?;
```