actix-web/awc
dependabot[bot] f4d3f679cd
build(deps): update const-str requirement from 0.5 to 0.6
Updates the requirements on [const-str](https://github.com/Nugine/const-str) to permit the latest version.
- [Release notes](https://github.com/Nugine/const-str/releases)
- [Commits](https://github.com/Nugine/const-str/compare/v0.5.0...v0.6.0)

---
updated-dependencies:
- dependency-name: const-str
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-27 00:34:44 +00:00
..
examples docs: add tls to awc example 2024-12-29 15:17:18 +00:00
src fix(http2): remove host header when using http2 (#3516) 2024-12-29 16:55:32 +00:00
tests chore: update rcgen to 0.13 2024-05-19 10:12:32 +01:00
CHANGES.md fix(http2): remove host header when using http2 (#3516) 2024-12-29 16:55:32 +00:00
Cargo.toml build(deps): update const-str requirement from 0.5 to 0.6 2025-01-27 00:34:44 +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.5.1 2024-08-10 04:08:38 +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

Examples

Example project using TLS-enabled client →

Basic usage:

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