ninelives 0.2.0

Resilience primitives for async Rust: retry, circuit breaker, bulkhead, timeout, and composable stacks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Use Rust 2021 edition formatting (matches Cargo.toml)
edition = "2021"
# Keep lines readable but not too short
max_width = 100
# Normalize line endings for cross-platform consistency
newline_style = "Unix"
# Use maximal heuristics to reduce formatting churn on multi-line constructs
use_small_heuristics = "Max"
# Note: "Max" may keep some long chains on one line; adjust to "Default" if this becomes noisy.
# Enforce ordered imports for readability
reorder_imports = true