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 codebase currently uses both anyhow and thiserror for error handling. While anyhow is convenient for applications, thiserror provides better type safety, explicit error variants, and improved maintainability.
consider:
Refactoring all anyhow usage to thiserror.
Defining custom error types derived via thiserror in relevant modules
The text was updated successfully, but these errors were encountered:
The codebase currently uses both anyhow and thiserror for error handling. While anyhow is convenient for applications, thiserror provides better type safety, explicit error variants, and improved maintainability.
consider:
The text was updated successfully, but these errors were encountered: