Closed yrashk closed 1 year ago
It fails to compile with:
`(dyn std::error::Error + Send + 'static)` cannot be shared between threads safely
Solution: add Sync requirement
anyhow is a popular crate, especially for end users of APIs (such as tests and CLIs) and working with it is a useful property to have.
Thanks
It fails to compile with:
Solution: add Sync requirement
anyhow is a popular crate, especially for end users of APIs (such as tests and CLIs) and working with it is a useful property to have.