cyper-core

Crates.iocyper-core
lib.rscyper-core
version0.1.0-beta.3
sourcesrc
created_at2023-11-18 11:23:55.071536
updated_at2024-03-30 14:36:28.788212
descriptionCore adaptors and services for compio running on hyper
homepage
repositoryhttps://github.com/compio-rs/cyper
max_upload_size
id1040446
size19,307
王宇逸 (Berrysoft)

documentation

README

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.

Commit count: 233

cargo fmt