3 releases

0.1.0-beta.3 Mar 10, 2024
0.1.0-beta.2 Mar 4, 2024
0.1.0-beta.1 Nov 18, 2023

#1 in #compio

Download history 10/week @ 2024-02-16 7/week @ 2024-02-23 137/week @ 2024-03-01 217/week @ 2024-03-08 14/week @ 2024-03-15 41/week @ 2024-03-29 17/week @ 2024-04-05

58 downloads per month

MIT license

54KB
996 lines

Cyper

MIT licensed crates.io docs.rs Check Test

An HTTP library based on compio and hyper.

Quick start

Add compio and cyper as dependency:

compio = { version = "0.9.0", features = ["macros"] }
cyper = "0.1.0-beta.2"

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/").send().await.unwrap();
    println!("{}", response.text().await.unwrap());
}

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

~11–24MB
~462K SLoC