-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
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
Converting Target kind and crate_types to enum representation #258
Converting Target kind and crate_types to enum representation #258
Conversation
…with an Unknown(String) as a fallback
…change is purely internal to the library
Thanks for working on this. Please update the changelog, too |
I was looking into why it failed for |
Either is fine with me. Whatever works for you |
It looks like the latest version of cargo-platform (v0.1.6), has a msrv of 1.70. However v0.1.5 works with 1.56. I put an upper limit on |
That is generally a very bad idea, as it leads to un-resolvable dependency trees when another dependency in the tree requires |
Yeah, there are multiple ways to deal with this and I'll defer to the maintainers on this. The pull request was really for something else, so I can revert the |
yes please remove that commit |
Please remove the commits, instead of using a new commit to revert the previous one |
99d3e89
to
cb54bb5
Compare
Should be good now :) |
Thanks! |
Converting Target kind and crate_types to enum representation, along with an Unknown(String) as a fallback.
This is in response to the following issue: #239