actix-web/awc
dependabot[bot] a61a9b895b
build(deps): update zstd requirement from 0.12 to 0.13
Updates the requirements on [zstd](https://github.com/gyscos/zstd-rs) to permit the latest version.
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](https://github.com/gyscos/zstd-rs/compare/v0.12.0...v0.13.0)

---
updated-dependencies:
- dependency-name: zstd
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-13 15:45:19 +00:00
..
examples address clippy lints 2023-01-01 20:56:34 +00:00
src chore: avoid single char error bindings 2023-09-03 19:09:42 +01:00
tests Actix Web Rustls v0.21 support (#3116) 2023-08-29 01:11:11 +01:00
CHANGES.md Update trust-dns-resolver requirement from 0.22 to 0.23 (#3121) 2023-09-03 04:40:41 +00:00
Cargo.toml build(deps): update zstd requirement from 0.12 to 0.13 2023-10-13 15:45:19 +00:00
LICENSE-APACHE add license files 2019-06-01 17:25:29 +06:00
LICENSE-MIT add license files 2019-06-01 17:25:29 +06:00
README.md chore(awc): prepare release 3.2.0 2023-08-29 01:53:14 +01:00

README.md

awc (Actix Web Client)

Async HTTP and WebSocket client library.

crates.io Documentation MIT or Apache 2.0 licensed Dependency Status Chat on Discord

Documentation & Resources

Example

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
    });
}