Wrapper around reqwest to allow for client middleware chains.
Go to file
Rodrigo Gryzinski 0eece565db (cargo-release) version 0.1.1 2021-09-15 10:26:05 +01:00
.github Add support for OpenTelemetry 0.16 and tracing-opentelemetry 0.15 (#2) 2021-08-30 13:14:06 +02:00
reqwest-middleware (cargo-release) version 0.1.1 2021-09-15 10:26:05 +01:00
reqwest-retry Initial commit 2021-08-13 08:59:58 +01:00
reqwest-tracing (cargo-release) start next development iteration 0.1.2-alpha.0 2021-08-30 13:17:31 +02:00
.gitignore Initial commit 2021-08-13 08:59:58 +01:00
CHANGELOG.md Add (send/execute)_with_extensions (#4) 2021-09-01 15:08:34 +01:00
CODE_OF_CONDUCT.md Initial commit 2021-08-13 08:59:58 +01:00
CONTRIBUTING.md Initial commit 2021-08-13 08:59:58 +01:00
Cargo.toml Initial commit 2021-08-13 08:59:58 +01:00
LICENSE-APACHE Initial commit 2021-08-13 08:59:58 +01:00
LICENSE-MIT Initial commit 2021-08-13 08:59:58 +01:00
README.md Initial commit 2021-08-13 08:59:58 +01:00

README.md

reqwest-middleware

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

Crates.io Docs.rs CI Coverage Status

Overview

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

use reqwest_middleware::{ClientBuilder, ClientWithMiddleware};
use reqwest_retry::{RetryTransientMiddleware, policies::ExponentialBackoff};
use reqwest_tracing::TracingMiddleware;

#[tokio::main]
async fn main() {
    let retry_policy = ExponentialBackoff::builder().build_with_max_retries(3);
    let client = ClientBuilder::new(reqwest::Client::new())
        .with(TracingMiddleware)
        .with(RetryTransientMiddleware::new_with_policy(retry_policy))
        .build();
    run(client).await;
}

async fn run(client: ClientWithMiddleware) {
    // free retries!
    client
        .get("https://some-external-service.com")
        .header("foo", "bar")
        .send()
        .await
        .unwrap();
}

How to install

Add reqwest-middleware to your dependencies

[dependencies]
# ...
reqwest-middleware = "0.1.0"

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.