AFAICT error_chain is more or less dead sadly. One issue it has is that their errors don't implement Sync therefor you cannot use e.g. anyhow or similar libraries because they require sync.
Maybe it could be replaced with thiserror or another modern alternative.
AFAICT
error_chain
is more or less dead sadly. One issue it has is that their errors don't implementSync
therefor you cannot use e.g.anyhow
or similar libraries because they require sync.Maybe it could be replaced with thiserror or another modern alternative.