mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
ba88d3b4bf
* prepare actix-router release 0.5.0-beta.2 * prepare actix-web-codegen release 0.5.0-beta.4 * prepare actix-http release 3.0.0-beta.10 * prepare awc release 3.0.0-beta.8 * prepare actix-web release 4.0.0-beta.9 * prepare actix-http-test release 3.0.0-beta.6 * prepare actix-test release 0.1.0-beta.4 * prepare actix-files release 0.6.0-beta.7 * prepare actix-multipart release 0.4.0-beta.6 * prepare actix-web-actors release 4.0.0-beta.7 * fix http test version * re-add patch * update router repo url * fix http test readme version
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
# awc (Actix Web Client)
|
|
|
|
> Async HTTP and WebSocket client library.
|
|
|
|
[![crates.io](https://img.shields.io/crates/v/awc?label=latest)](https://crates.io/crates/awc)
|
|
[![Documentation](https://docs.rs/awc/badge.svg?version=3.0.0-beta.8)](https://docs.rs/awc/3.0.0-beta.8)
|
|
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/awc)
|
|
[![Dependency Status](https://deps.rs/crate/awc/3.0.0-beta.8/status.svg)](https://deps.rs/crate/awc/3.0.0-beta.8)
|
|
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
|
|
|
|
## Documentation & Resources
|
|
|
|
- [API Documentation](https://docs.rs/awc)
|
|
- [Example Project](https://github.com/actix/examples/tree/HEAD/security/awc_https)
|
|
- Minimum Supported Rust Version (MSRV): 1.51.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
|
|
});
|
|
}
|
|
```
|