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

Download history 6/week @ 2023-12-17 6/week @ 2023-12-24 8/week @ 2024-01-07 32/week @ 2024-01-14 11/week @ 2024-01-21 7/week @ 2024-01-28 10/week @ 2024-02-04 11/week @ 2024-02-11 26/week @ 2024-02-18 48/week @ 2024-02-25 35/week @ 2024-03-03 38/week @ 2024-03-10 36/week @ 2024-03-17 23/week @ 2024-03-24 82/week @ 2024-03-31

每月下载 184
3 个crate中(2个直接) 使用

Apache-2.0

14KB
355

请求

Build Status

文档可在 此处 获取。

快速开始

[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