actix-web/awc
dependabot[bot] f4e54b52bb
build(deps): update rustls-pemfile requirement from 1 to 2
Updates the requirements on [rustls-pemfile](https://github.com/rustls/pemfile) to permit the latest version.
- [Release notes](https://github.com/rustls/pemfile/releases)
- [Commits](https://github.com/rustls/pemfile/compare/v/1.0.0...v/2.0.0)

---
updated-dependencies:
- dependency-name: rustls-pemfile
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-16 10:36:42 +00:00
..
examples chore: remove allow(uninlined_format_args) 2023-12-16 10:33:00 +00:00
src chore: remove allow(uninlined_format_args) 2023-12-16 10:33:00 +00:00
tests chore: remove allow(uninlined_format_args) 2023-12-16 10:33:00 +00:00
CHANGES.md build(deps): update zstd requirement from 0.12 to 0.13 (#3165) 2023-10-30 01:18:45 +00:00
Cargo.toml build(deps): update rustls-pemfile requirement from 1 to 2 2023-12-16 10:36:42 +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
    });
}