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
When trying to use the new version with the Rust 1.75 compiler, I get the following error:
error[E0658]: use of unstable library feature 'error_in_core' --> arbitrary-1.4.0/src/lib.rs:52:6 | 52 | impl core::error::Error for MaxRecursionReached {}
It looks like while std::error::Error has been around for a while, its presence in core is new as of Rust 1.81
std::error::Error
core
The text was updated successfully, but these errors were encountered:
Same. Incompatible upgrade, should release major version.
Sorry, something went wrong.
It seems like this was an oversight. Fixing as in #204 and releasing a 1.4.1 seems like the right way to move forward.
Successfully merging a pull request may close this issue.
When trying to use the new version with the Rust 1.75 compiler, I get the following error:
It looks like while
std::error::Error
has been around for a while, its presence incore
is new as of Rust 1.81The text was updated successfully, but these errors were encountered: