summaryrefslogtreecommitdiff
path: root/crates/tor-error/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump all arti*, tor* crates to 0.2.0Nick Mathewson2022-04-011-1/+1
| | | | | | | | Not all of these strictly need to be bumped to 0.2.0; many could go to 0.1.1 instead. But since everything at the tor-rtcompat and higher layers has had breaking API changes, it seems not so useful to distinguish. (It seems unlikely that anybody at this stage is depending on e.g. tor-protover but not arti-client.)
* Bump all crates to 0.1.0arti-v0.1.0Nick Mathewson2022-03-011-1/+1
|
* Update minimum backtrace version to 0.3.39Nick Mathewson2022-02-251-1/+1
| | | | | This is needed to make the backtrace test pass on Rust 1.53 with minimum-version libraries.
* Require backtrace 0.3.8.Nick Mathewson2022-02-041-1/+1
| | | | | | This is the first version that builds correctly on our CI. It's from back in 2018, so requiring it shouldn't cause any major problems.
* spawn errors: impl HasKind for futures::SpawnErrorIan Jackson2022-02-041-0/+2
| | | | | | | | | This needs two kinds. We have decided to treat a non-shutdown SpawnError as "unexplained" rather than as an InternalError. There are many crates whose From<futures::task::SpawnError> for Error erroneously treat it as an internal error. We will fix them in a moment.
* tor-error: Introduce InternalError as a type and a kindIan Jackson2022-02-041-0/+4
| | | | This can contain a backtrace, which will be printed.
* tor-error: Skeleton for new crateIan Jackson2022-02-041-0/+16
As per doc/Errors.md. Currently there are no error kinds. Some will be added as we go along.