mirror of
https://github.com/actix/actix-web.git
synced 2024-11-20 16:41:05 +00:00
9b6a089b36
* fix awc readme example Co-authored-by: Rob Ede <robjtede@icloud.com>
1.3 KiB
1.3 KiB
awc (Actix Web Client)
Async HTTP and WebSocket client library.
Documentation & Resources
- API Documentation
- Example Project
- Chat on Gitter
- Minimum Supported Rust Version (MSRV): 1.42.0
Example
use actix_rt::System;
use awc::Client;
fn main() {
System::new("test").block_on(async {
let client = Client::default();
let res = client
.get("http://www.rust-lang.org") // <- Create request builder
.header("User-Agent", "Actix-web")
.send() // <- Send http request
.await;
println!("Response: {:?}", res); // <- server http response
});
}