mirror of
https://github.com/fafhrd91/actix-web
synced 2025-03-03 23:47:33 +01:00
38 lines
1.4 KiB
Markdown
38 lines
1.4 KiB
Markdown
# awc (Actix Web Client)
|
|
|
|
> Async HTTP and WebSocket client library.
|
|
|
|
[](https://crates.io/crates/awc)
|
|
[](https://docs.rs/awc/3.0.0-beta.6)
|
|

|
|
[](https://deps.rs/crate/awc/3.0.0-beta.6)
|
|
[](https://gitter.im/actix/actix-web?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
|
|
## Documentation & Resources
|
|
|
|
- [API Documentation](https://docs.rs/awc)
|
|
- [Example Project](https://github.com/actix/examples/tree/HEAD/security/awc_https)
|
|
- [Chat on Gitter](https://gitter.im/actix/actix-web)
|
|
- Minimum Supported Rust Version (MSRV): 1.46.0
|
|
|
|
## Example
|
|
|
|
```rust
|
|
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
|
|
});
|
|
}
|
|
```
|