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
The current errors implementation is hand-written, with half-hearted conversions and formatting implementations. If we want to add more features to indentex, we should find a scalable, boilerplate-free method of error handling.
A quick search on crates.io reveals two primary candidates:
The current errors implementation is hand-written, with half-hearted conversions and formatting implementations. If we want to add more features to indentex, we should find a scalable, boilerplate-free method of error handling.
A quick search on crates.io reveals two primary candidates:
quick-error
error-chain
Both contestants have a lot of dependent crates, e.g.
handlebars
usesquick-chain
,tera
useserror-chain
.I'm not sure which one to use, however I intuitively tend to
error-chain
.The text was updated successfully, but these errors were encountered: