Crates.io | pi_awc |
lib.rs | pi_awc |
version | 0.1.0 |
source | src |
created_at | 2023-06-12 09:43:38.884834 |
updated_at | 2023-06-12 09:43:38.884834 |
description | Async HTTP and WebSocket client library |
homepage | https://actix.rs |
repository | https://github.com/GaiaWorld/pi_net.git |
max_upload_size | |
id | 888032 |
size | 311,343 |
Async HTTP and WebSocket client library.
use actix_rt::System;
use awc::Client;
fn main() {
System::new().block_on(async {
let client = Client::default();
let res = client
.get("http://www.rust-lang.org") // <- Create request builder
.insert_header(("User-Agent", "Actix-web"))
.send() // <- Send http request
.await;
println!("Response: {:?}", res); // <- server http response
});
}