Open
Description
Feature Proposed
I want to improve the quality of error messages and reduce the use of panic.
- convert
unwrap()
to returnanyhow::Error
with informative contexts. - convert
unwrap()
toexpect(...)
for deadly scenarios. - remove
unwrap()
when it can be proved with pattern matching.
Use Case
This would increase its usability as a library and convey clearer messages to the users.
Known pitfalls
potentially increase binary size