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
I've a problem with upgrading from 1.1.3 to version 1.2.1. Here are the steps to reproduce the problem.
git clone https://github.com/multiformats/rust-multihash.git --branch v0.16.3 cd rust-multihash cargo build cargo update --package proc-macro-crate cargo build
The build fails, due to crate_name() returning Ok(FoundCrate::Name("multihash")) instead of Ok(FoundCrate::Itself) (https://github.com/multiformats/rust-multihash/blob/v0.16.3/derive/src/utils.rs#L8-L11).
crate_name()
Ok(FoundCrate::Name("multihash"))
Ok(FoundCrate::Itself)
You can see the difference in the output via cargo expand multihash_impl.
cargo expand multihash_impl
The text was updated successfully, but these errors were encountered:
Thanks a lot for the fix, it fixes my issue!
Sorry, something went wrong.
NP! I tested it with your repo :D
Successfully merging a pull request may close this issue.
I've a problem with upgrading from 1.1.3 to version 1.2.1. Here are the steps to reproduce the problem.
The build fails, due to
crate_name()
returningOk(FoundCrate::Name("multihash"))
instead ofOk(FoundCrate::Itself)
(https://github.com/multiformats/rust-multihash/blob/v0.16.3/derive/src/utils.rs#L8-L11).You can see the difference in the output via
cargo expand multihash_impl
.The text was updated successfully, but these errors were encountered: