backoff_config/lib.rs
1//! # backoff-config
2//!
3//! `backoff-config` makes configuring `backoff` more flexible by providing a unified `Backoff` strategy enum and a
4//! `BackoffConfig` that supports deserialization.
5//!
6//! The actual backoff logic is powered by the awesome [backon](https://crates.io/crates/backon) crate. Make sure to check
7//! out [backon](https://crates.io/crates/backon) to explore its amazing features and ergonomics!
8
9mod backoff;
10mod backoff_config;
11
12pub use crate::backoff::*;
13pub use crate::backoff_config::*;