A simple REST client for Rust, inspired by unirest.
```rust let mut res = String::new();
reru::post("https://httpbin.org/post") .expect("failed to parse URL") .param("showenv", "1") .bodyjson(&["蟹", "Ferris"]) .expect("failed to serialize") .request() .expect("failed to send request") .readtostring(&mut res) .expect("failed to read response");
println!("{}", res); ```