06-http-client
Chapter 6 — Crates.io HTTP Client
The HTTP client handles: - Building URLs - Retrying failures - Rate-limit handling (429) - Deserializing responses
Retry Logic
match response.status() {
429 => wait retry-after or 60s
5xx => exponential backoff
_ => success
}Placeholder: Code snippet screenshot