14 releases

0.2.0 Nov 21, 2024
0.1.6 Sep 26, 2024
0.1.0-beta.3 Mar 10, 2024
0.1.0-beta.1 Nov 18, 2023

#1041 in Network programming

Download history 63/week @ 2024-09-06 42/week @ 2024-09-13 1119/week @ 2024-09-20 348/week @ 2024-09-27 91/week @ 2024-10-04 32/week @ 2024-10-11 3/week @ 2024-10-18 16/week @ 2024-10-25 66/week @ 2024-11-01 25/week @ 2024-11-08 180/week @ 2024-11-15 96/week @ 2024-11-22 30/week @ 2024-11-29

342 downloads per month
Used in winio

MIT license

77KB
1.5K SLoC

Cyper

MIT licensed crates.io docs.rs Check Test

An HTTP library based on compio and hyper.

This project references code from reqwest.

Quick start

Add compio and cyper as dependency:

compio = { version = "0.12.0", features = ["macros"] }
cyper = "0.1.0"

Then we can start a simple HTTP request:

use cyper::Client;

#[compio::main]
async fn main() {
    let client = Client::new();
    let response = client
        .get("https://www.example.com/")
        .unwrap()
        .send()
        .await
        .unwrap();
    println!("{}", response.text().await.unwrap());
}

Features

  • HTTPS - powered by compio-tls
    • native-tls
    • rustls
  • HTTP 2
  • HTTP 3 - powered by compio-quic
  • cookies
  • charset
  • serde-json
  • compression
    • gzip
    • brotli

Contributing

There are opportunities to contribute to Cyper at any level. It doesn't matter if you are just getting started with Rust or are the most weathered expert, we can use your help. If you have any question about Cyper, feel free to join our telegram group. Before contributing, please checkout our contributing guide.

Dependencies

~20–34MB
~700K SLoC