maybe-backoff 0.5.0

Retry operations with exponential backoff policy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
default:
    just --list

test:
    cargo test --features tokio
    cargo test --doc

lint:
    cargo fmt -- --check
    cargo clippy --features tokio --all-targets -- -D warnings
    cargo clippy --lib --target wasm32-unknown-unknown -- -D warnings

check: lint test

fmt:
    cargo fmt