| Crates.io | awc |
| lib.rs | awc |
| version | 3.8.1 |
| created_at | 2019-03-28 20:00:42.2778+00 |
| updated_at | 2025-10-05 02:34:50.317342+00 |
| description | Async HTTP and WebSocket client library |
| homepage | https://actix.rs |
| repository | https://github.com/actix/actix-web |
| max_upload_size | |
| id | 124418 |
| size | 392,876 |
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
});
}