1个稳定版本
1.0.1 | 2020年1月20日 |
---|
#7 in #actori
102 每月下载量
在 11 个crate中使用 (直接使用2个)
1MB
20K SLoC
Actori HTTP客户端
一个HTTP客户端
文档与社区资源
- 用户指南
- API文档
- 在gitter上聊天
- Cargo包: actoriwc
- 最低支持的Rust版本:1.33或更高
示例
use actori_rt::System;
use actoriwc::Client;
use futures::future::{Future, lazy};
fn main() {
System::new("test").block_on(lazy(|| {
let mut client = Client::default();
client.get("https://www.rust-lang.net.cn") // <- Create request builder
.header("User-Agent", "Actori-web")
.send() // <- Send http request
.and_then(|response| { // <- server http response
println!("Response: {:?}", response);
Ok(())
})
}));
}
依赖项
~29MB
~618K SLoC