Skip to main content

progenitor_extras/
lib.rs

1//! Extra functionality for the [Progenitor](https://docs.rs/progenitor) OpenAPI client generator.
2//!
3//! ## Operation retries
4//!
5//! The [`retry`] module provides utilities to perform retries against
6//! Progenitor-generated API clients with a backoff via the [`backon`] crate. See
7//! the module documentation for more information.
8
9#![deny(missing_docs)]
10
11pub mod retry;
12
13pub use backon;