14 releases

0.3.0 Apr 10, 2024
0.2.5 Mar 15, 2024
0.2.4 Oct 24, 2023
0.2.2 May 11, 2023
0.1.2 Sep 28, 2021

#6 in HTTP client

Download history 25967/week @ 2023-12-23 52524/week @ 2023-12-30 78318/week @ 2024-01-06 89028/week @ 2024-01-13 106810/week @ 2024-01-20 109816/week @ 2024-01-27 111195/week @ 2024-02-03 117993/week @ 2024-02-10 119200/week @ 2024-02-17 130538/week @ 2024-02-24 123444/week @ 2024-03-02 139923/week @ 2024-03-09 134339/week @ 2024-03-16 136962/week @ 2024-03-23 141471/week @ 2024-03-30 113181/week @ 2024-04-06

550,398 downloads per month
Used in 207 crates (146 directly)

MIT/Apache

39KB
532 lines

reqwest-middleware

A crate implementing a wrapper around reqwest to allow for client middleware chains.

Crates.io Docs.rs CI Coverage Status

This crate provides functionality for building and running middleware but no middleware implementations. This repository also contains a couple of useful concrete middleware crates:

Note about browser support: automated tests targeting wasm are disabled. The crate may work with wasm but wasm support is unmaintained. PRs improving wasm are still welcome but you'd need to reintroduce the tests and get them passing before we'd merge it (see https://github.com/TrueLayer/reqwest-middleware/pull/105).

Overview

The reqwest-middleware client exposes the same interface as a plain reqwest client, but ClientBuilder exposes functionality to attach middleware:

# Cargo.toml
# ...
[dependencies]
reqwest = { version = "0.12", features = ["rustls-tls"] }
reqwest-middleware = "0.3"
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
use reqwest_middleware::{ClientBuilder, ClientWithMiddleware};
use reqwest_retry::{RetryTransientMiddleware, policies::ExponentialBackoff};
use reqwest_tracing::TracingMiddleware;

#[tokio::main]
async fn main() {
    // Retry up to 3 times with increasing intervals between attempts.
    let retry_policy = ExponentialBackoff::builder().build_with_max_retries(3);
    let client = ClientBuilder::new(reqwest::Client::new())
        // Trace HTTP requests. See the tracing crate to make use of these traces.
        .with(TracingMiddleware::default())
        // Retry failed requests.
        .with(RetryTransientMiddleware::new_with_policy(retry_policy))
        .build();
    run(client).await;
}

async fn run(client: ClientWithMiddleware) {
    client
        .get("https://truelayer.com")
        .header("foo", "bar")
        .send()
        .await
        .unwrap();
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Third-party middleware

The following third-party middleware use reqwest-middleware:

Dependencies

~4–17MB
~231K SLoC