Crates.io | awc |
lib.rs | awc |
version | 3.5.1 |
source | src |
created_at | 2019-03-28 20:00:42.2778 |
updated_at | 2024-08-10 03:12:34.167723 |
description | Async HTTP and WebSocket client library |
homepage | https://actix.rs |
repository | https://github.com/actix/actix-web |
max_upload_size | |
id | 124418 |
size | 376,083 |
awc
(Actix Web Client)Async HTTP and WebSocket client library.
Example project using TLS-enabled client →
Basic usage:
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
});
}