recap icon indicating copy to clipboard operation
recap copied to clipboard

Recap should export its own error type instead of having `envy` as dependency

Open Ten0 opened this issue 2 years ago • 0 comments

The dep on envy is unnecessary, and its error variants don't particularly make sense for here. Instead, I would expect something like:

enum Error {
    RegexDoesNotMatchInputString,
    DeserializationError{ ... }
}

Ten0 avatar Jun 18 '23 17:06 Ten0