-
Notifications
You must be signed in to change notification settings - Fork 443
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
Use dep:
syntax to avoid implicit features.
#1099
Conversation
The only real externally visible feature should be `parallel` and not the implicit features for the optional dependencies.
With this, adding
rather than:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Nice improvements to feature documentation
Guys, this broke a lot of code because solana-program has been using |
In that case it's a no-op, enabling jobserver does not enable the parallel compilation, it's still compiled in sequential, just with one extra dependency doing nothing. |
@NobodyXu It looks like they enabled both Now this would fail since there is no Maybe
or
And perhaps we could emit a warning when |
Right yeah that makes sense, I would accept a PR for it. |
I'll do this ... but I notice that it has been 3 weeks and only apparently one thing is broken and I don't see that anyone in that community has reported an issue or filed a PR to fix their usage of |
The only real externally visible feature should be
parallel
and not the implicit features for the optional dependencies.