awc

Crates.ioawc
lib.rsawc
version3.5.0
sourcesrc
created_at2019-03-28 20:00:42.2778
updated_at2024-05-19 11:08:52.531726
descriptionAsync HTTP and WebSocket client library
homepagehttps://actix.rs
repositoryhttps://github.com/actix/actix-web
max_upload_size
id124418
size357,403
Core (github:actix:core)

documentation

README

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
    });
}
Commit count: 4348

cargo fmt