├── .github └── workflows │ └── pull_request.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── hello_world.rs └── reqwest.rs └── src ├── backoff.rs ├── jitter.rs └── lib.rs /.github/workflows/pull_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/.github/workflows/pull_request.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/README.md -------------------------------------------------------------------------------- /examples/hello_world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/examples/hello_world.rs -------------------------------------------------------------------------------- /examples/reqwest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/examples/reqwest.rs -------------------------------------------------------------------------------- /src/backoff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/src/backoff.rs -------------------------------------------------------------------------------- /src/jitter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/src/jitter.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelderbeever/mulligan/HEAD/src/lib.rs --------------------------------------------------------------------------------