Erguotou (the library) is a set of utilities for writing http client with hyper.
Erguotou (the name) is a kind of Chinese wine (Baijiu).
This library is working in progress. Any suggestion are welcome on API design.
toml
[dependencies]
erguotou = "*"
Demo code
```rust use hyper::client::Client; use rustc_serialize::json::ToJson; use ::json::{JsonParam, JsonRPC};
// the data you are going to send
// it can be anything of rustc_serialize::json::ToJson
let mut data = BTreeMap::new();
data.insert("hello".to_owned(), "world".to_owned());
// the hyper client
let mut client = Client::new();
// construct JsonParam from data
let mut json_param: JsonParam = JsonParam::from(&data as &ToJson);
// the hyper request builder calls, no need for body() and header()
// a single json() call to fill them all
let mut resp = client.post("http://localhost:8080")
.json(&mut json_param).send().unwrap();
```
MIT