summaryrefslogtreecommitdiff
path: root/crates/retry-error/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* fix: semver labels and extend() with push_timed loopNihal2025-12-171-2/+2
|
* refactor: convert Extend to inherent method, forbid push/extend, fix ↵Nihal2025-12-171-0/+6
| | | | rend_handshake time
* Remove semver.md files now that 1.1.7 is out.Nick Mathewson2023-08-011-2/+0
|
* 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.