{"id":58101,"library":"reqwest-retry","title":"Reqwest Retry","description":"Retry middleware for reqwest, enabling automatic retries of failed HTTP requests.","status":"active","version":"0.9.1","language":"rust","source_language":null,"source_url":"https://github.com/TrueLayer/reqwest-middleware","tags":["http","retry","middleware","reqwest","async"],"install":[{"cmd":"# Cargo.toml\n[dependencies]\nreqwest-retry = \"0.9.1\"","lang":"toml","label":"Cargo.toml"},{"cmd":"cargo add reqwest-retry","lang":"bash","label":"cargo add"}],"dependencies":[],"imports":[{"symbol":"ClientWithMiddleware","correct":"use reqwest_middleware::ClientWithMiddleware;"}],"quickstart":{"code":"use reqwest_middleware::ClientBuilder;\nuse reqwest_retry::{RetryTransientMiddleware, policies::ExponentialBackoff};\n\nlet retry_policy = ExponentialBackoff::builder().build_with_max_retries(3);\nlet client = ClientBuilder::new(reqwest::Client::new())\n    .with(RetryTransientMiddleware::new_with_policy(retry_policy))\n    .build();\nlet response = client.get(\"https://example.com\").send().await.unwrap();","lang":"rust","description":"Creates a reqwest client with retry middleware using exponential backoff."},"warnings":[{"fix":"Add reqwest-middleware to Cargo.toml","message":"Requires reqwest-middleware crate as a dependency","severity":"gotcha","affected_versions":">=0.1.0"}],"env_vars":null,"search_vec":"'async':18 'automat':8 'enabl':7 'fail':11 'http':12,14 'middlewar':4,16 'request':13 'reqwest':1,6,17 'retri':2,3,9,15","created_at":"2026-06-16T16:11:28.594973+00:00","updated_at":"2026-06-16T16:11:28.594973+00:00","problems":[],"ecosystem":"crates","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":null,"cli_name":null,"cli_version":null,"type":"library","homepage":"https://github.com/TrueLayer/reqwest-middleware","github":"https://github.com/TrueLayer/reqwest-middleware","docs":"https://docs.rs/reqwest-retry/","changelog":null,"pypi":null,"npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["http-client","utility"],"base_url":null,"auth_type":null,"provenance":{"verified_status":null,"verified_at":null,"last_verified":"2026-06-16","next_check":"2026-12-13","install_tag":null}}