We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any reason for CoseError not to implement Error? This causes issues when working with other libraries, like thiserror
CoseError
Error
thiserror
The text was updated successfully, but these errors were encountered:
The original reason was because this crate is #[no_std], and Error used to be std-only.
#[no_std]
std
AIUI Error has now moved into core, but I guess that would require a suitable MSRV to use.
core
In the meanwhile, I guess we could add a (non-default) std feature that adds an Error implementation.
Sorry, something went wrong.
The std feature looks good to me
Fixed in #61
No branches or pull requests
Is there any reason for
CoseError
not to implementError
?This causes issues when working with other libraries, like
thiserror
The text was updated successfully, but these errors were encountered: