reqwest 0.10.1

higher level HTTP client library
Documentation
1
2
3
4
5
6
7
8
9
#[tokio::main]
async fn main() {
    reqwest::Client::new()
        .post("http://www.baidu.com")
        .form(&[("one", "1")])
        .send()
        .await
        .unwrap();
}