Crates.io | cyper-axum |
lib.rs | cyper-axum |
version | 0.1.0 |
source | src |
created_at | 2024-10-04 08:59:52.431647 |
updated_at | 2024-10-04 08:59:52.431647 |
description | axum adaptor based on cyper |
homepage | |
repository | https://github.com/compio-rs/cyper |
max_upload_size | |
id | 1396302 |
size | 22,247 |
An HTTP library based on compio and hyper.
This project references code from reqwest.
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());
}
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.