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 was archived by the owner on Mar 24, 2022. It is now read-only.
For error handling, we currently use the
failurecrate everywhere.failurewas great when it was released and the standardErrortrait didn't support backtraces yet. But things have changed since.Backtraces are now supported in
std::error::Error, so we should use it instead of a custom trait.Cranelift switched to
thiserror, that is lightweight and does everything we need, so we may want to do the same.