reqwest 0.9.11

higher level HTTP client library
Documentation
1
2
3
4
5
6
7
8
9
extern crate reqwest;

fn main() {
    reqwest::Client::new()
        .post("http://www.baidu.com")
        .form(&[("one", "1")])
        .send()
        .unwrap();
}