8个版本
使用旧Rust 2015
0.0.8 | 2015年5月12日 |
---|---|
0.0.7 | 2015年5月1日 |
0.0.6 | 2015年4月25日 |
#9 in #request-http
每月下载 184 次
在 3 个crate中(2个直接) 使用
14KB
355 行
请求
文档可在 此处 获取。
快速开始
[dependencies]
request = "0.0.7"
extern crate request;
use std::collections::HashMap;
let url = "https://github.com/ghmlee";
let mut headers: HashMap<String, String> = HashMap::new();
headers.insert("Connection".to_string(), "close".to_string());
let res = match request::get(&url, &mut headers) {
Ok(res) => res,
Err(e) => { println!("{}", e); return; }
};
println!("{}", res.http_version);
println!("{}", res.status_code);
println!("{}", res.status_message);
println!("{}", res.body);
lib.rs
:
请求
依赖关系
~2.7–4MB
~85K SLoC