surf-retry

A retry middleware for surf

Install

With cargo add installed :

sh cargo add surf-retry

Documentation

Example

```rust use surf_retry::{ExponentialBackoff, RetryMiddleware}; use surf::{Client, Request, http::Method}; use url::Url;

use std::time::Duration;

#[async_std::main] async fn main() -> surf::Result<()> { let req = Request::new(Method::Get, Url::parse("https://example.api")?); let client = Client::new().with(RetryMiddleware::default()); let res = client.send(req).await?; Ok(()) } ```