2个版本
使用旧的Rust 2015
0.11.1 | 2017年6月20日 |
---|---|
0.11.0 | 2017年6月16日 |
#19 in #days
9KB
157 代码行数(不含注释)
make_hyper_great_again
将异步hyper包装回美好的旧时光。
extern crate make_hyper_great_again as mhga;
use mhga::Client;
use std::io::Read;
fn main() {
let client = Client::new().unwrap(); // only new thing is that this returns a Result
let mut response = client.get("http://example.com").send().unwrap();
let mut content = String::new();
response.read_to_string(&mut content).unwrap();
println!("{}", content);
}
查看更多示例,请见 /examples/
依赖项
~8.5MB
~146K SLoC