2个版本 (1个稳定版)

1.0.1 2020年1月18日

#383 in HTTP客户端

Download history • Rust 包仓库 20/week @ 2024-03-17 • Rust 包仓库 28/week @ 2024-03-24 • Rust 包仓库 70/week @ 2024-03-31 • Rust 包仓库 14/week @ 2024-04-07 • Rust 包仓库 17/week @ 2024-04-14 • Rust 包仓库 20/week @ 2024-04-21 • Rust 包仓库 14/week @ 2024-04-28 • Rust 包仓库 15/week @ 2024-05-05 • Rust 包仓库 28/week @ 2024-05-12 • Rust 包仓库 22/week @ 2024-05-19 • Rust 包仓库 24/week @ 2024-05-26 • Rust 包仓库 23/week @ 2024-06-02 • Rust 包仓库 13/week @ 2024-06-09 • Rust 包仓库 15/week @ 2024-06-16 • Rust 包仓库 21/week @ 2024-06-23 • Rust 包仓库 10/week @ 2024-06-30 • Rust 包仓库

每月 61 次下载
8 个crate中使用 (直接使用2个)

MIT/Apache

1MB
20K SLoC

Actix http客户端 构建状态 codecov 加入gitter聊天 https://gitter.im/actix/actix

HTTP客户端

文档和社区资源

示例

use requiem_rt::System;
use requiem_wc::Client;
use futures::future::{Future, lazy};

fn main() {
    System::new("test").block_on(lazy(|| {
       let mut client = Client::default();

       client.get("https://rust-lang.net.cn") // <- Create request builder
          .header("User-Agent", "Actix-web")
          .send()                             // <- Send http request
          .and_then(|response| {              // <- server http response
               println!("Response: {:?}", response);
               Ok(())
          })
    }));
}

依赖项

~29MB
~618K SLoC