parseable icon indicating copy to clipboard operation
parseable copied to clipboard

Refactor error handling to use thiserror exclusively (remove anyhow)

Open 7h3cyb3rm0nk opened this issue 10 months ago • 0 comments

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

7h3cyb3rm0nk avatar Feb 23 '25 16:02 7h3cyb3rm0nk