-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Description
Currently, we use anyhow
for all errors. I like anyhow, but it makes it too easy to bubble up an error without context, which leads to a less-than-useful error message. For example, I/O errors don't include the offending file, making them quite inscrutable. We should probably switch to using something like snafu or thiserror.