-
Notifications
You must be signed in to change notification settings - Fork 42
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
objc 0.2.7 dependency fails to build #6
Comments
Found a better fix. Apparently specifying objc = "0.2.6" still permits upgrading to anything < 1.0.0. However a more explicit version requirement can be specified: objc = ">=0.2,<0.2.7" This avoids users having to force updating to a particular version and for now builds out-of-the-box, but it may be worth asking the maintainer of objc if there is a better solution, and if this is a known problem. |
@aclysma the If you switch to using the |
Updated to use |
The current workaround is to force cargo to use 0.2.6
cargo update -p objc --precise 0.2.6
The text was updated successfully, but these errors were encountered: