[beta] Fix issue with filtering exclusive target dependencies.#9257
Merged
bors merged 1 commit intorust-lang:rust-1.51.0from Mar 12, 2021
Merged
[beta] Fix issue with filtering exclusive target dependencies.#9257bors merged 1 commit intorust-lang:rust-1.51.0from
bors merged 1 commit intorust-lang:rust-1.51.0from
Conversation
Fix issue with filtering exclusive target dependencies. rust-lang#8777 incorrectly changed the filtering logic for dependencies. Essentially it split `filter(any(A && B && C && D))` into two parts `filter(any(A && B)).filter(any(C && D))` which doesn't have the same meaning. The solution here is to pass a closure so that the conditions are joined again. Fixes rust-lang#9216
|
r? @Eh2406 (rust-highfive has picked a reviewer for you, use r? to override) |
|
Member
|
@bors: r+ |
Contributor
|
📌 Commit 235d958 has been approved by |
Contributor
Contributor
|
☀️ Test successful - checks-actions |
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Mar 12, 2021
[beta] Update cargo 2 commits in 9294589828ca283c690625a7fade9d264e64606d..35a2a434d37e796e2f013f577b3c481f518afd97 2021-02-22 22:05:24 +0000 to 2021-03-12 01:08:31 +0000 - [beta] Fix issue with filtering exclusive target dependencies. (rust-lang/cargo#9257) - Update split-debuginfo docs around the default. (rust-lang/cargo#9224)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Beta backport of #9255.