summaryrefslogtreecommitdiff
path: root/crates/retry-error/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* retry-error: Attempts must be AsRef<dyn Error>; print their sourcesIan Jackson2023-07-191-0/+1
| | | | | | | | The effect is that everywhere a RetryError is used, the error sources for the contained errors will be Display'd. In tor-hsclient we no longer need to explicitly wrap things up in tor_error::Report.
* retry-error: Provide fmt_error_with_sources in retry-errorIan Jackson2023-07-191-0/+1
This code came from tor-error. So now tor-error depends on retry-error.