#hyper #wrap #back #days #async #ol #client

make_hyper_great_again

将异步hyper包装回美好的旧时光

2个版本

使用旧的Rust 2015

0.11.1 2017年6月20日
0.11.0 2017年6月16日

#19 in #days

MPL-2.0 许可证

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