-
Notifications
You must be signed in to change notification settings - Fork 22
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
looser dependency versions #3
base: master
Are you sure you want to change the base?
Conversation
Bump. The |
Bump. This is still a problem. |
bump also |
Bump |
Bump, memchr "~2.3.0" conflicts with the newly released clap 3.0 when used along this crate |
heim-rs/heim seems to move on with the
|
Bump for
|
Change upstream darwin-libproc to a fixed version See heim-rs/darwin-libproc#3
This is a blocker for me to using this crate, too many packages conflict with darwin-libproc; e.g.
|
Any updates on this? In the meantime, we can solve the issue by adding this to your [patch.crates-io]
darwin-libproc = { git="https://github.com/Orycterope/darwin-libproc.git", branch="dependencies_versions" } |
Removes the '~' from dependency versions.
The '~' operator is much more restrictive than the default caret operator.
I had conflicts on the memchr version because of your crate, even though I wasn' t even compiling it. I'm depending on
heim
while compiling for windows, and heim depends on your crate only when compiling for macos, but because of the way cargo resolves its dependencies, this still caused dependency resolution to fail.