You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
PR #3 introduced the usage of the anyhow crate. anyhow is targeted at usage by applications and not libraries. See this post for a good overview on why this matters.
Desired Behavior
Our error handling crate should not appear in our public API since the favored error handling crate changes over time (as demonstrated by the failure crate being deprecated).
Possible Solution
We should consider switching to thiserror or a similar error handling crate targeted at libraries instead of applications.
The text was updated successfully, but these errors were encountered:
Summary
PR #3 introduced the usage of the
anyhow
crate.anyhow
is targeted at usage by applications and not libraries. See this post for a good overview on why this matters.Desired Behavior
Our error handling crate should not appear in our public API since the favored error handling crate changes over time (as demonstrated by the failure crate being deprecated).
Possible Solution
We should consider switching to thiserror or a similar error handling crate targeted at libraries instead of applications.
The text was updated successfully, but these errors were encountered: