rikka 0.2.0

Async HTTP client for native & WASM.
Documentation
## Why ?

- [`reqwest`]https://crates.io/crates/reqwest on native targets
- [`fetch`]https://developer.mozilla.org/docs/Web/API/Fetch_API on `wasm32-unknown-unknown`

...and we have a cool API, I meaan isn't it cute?

## Look at it !

```rust
use rikka::{Redirect, Request};

let response = Request::builder("https://example.org/login")
    .post()
    .form(vec![("user".into(), "cat".into())])
    .cookie("session", "meow")
    .redirect(Redirect::Manual)
    .send()
    .await?;

assert_eq!(response.status, 302);
let next = response.location();
let cookie = response.set_cookie_value("session");
```

## Features

| Feature | Default | Description                                                    |
| ------- | ------- | -------------------------------------------------------------- |
| `json`  | Yes     | `Response::json()` and `RequestBuilder::json()` via `serde_json`. |

## License

Licensed under [MIT license](LICENSE).