execution-policy 0.0.3

Closure-first, runtime-light reliability policies (retry, timeout, circuit breaking, bounded concurrency, retry budgets) for any async Rust operation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Changelog

## [0.0.3] — 2026-06-25

### Added
- `retry_after` hint extractor on `Retry` — honor a server-supplied delay (e.g.
  HTTP `Retry-After`, gRPC `RetryInfo`) as a **floor** on the next backoff delay.

### Fixed
- `cargo test --no-default-features` now passes: integration test files gated
  behind `#![cfg(feature = "test-util")]` so they are skipped without the feature.

## [0.0.2] — initial public release

Retry · exponential backoff · jitter · attempt/total timeouts · circuit
breaking · bounded concurrency · retry budgets · event hooks · tracing bridge.