-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
[Merged by Bors] - add proc-macro-crate as a known duplicate #2456
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
Closed
Conversation
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
NathanSWard
approved these changes
Jul 12, 2021
NiklasEi
approved these changes
Jul 13, 2021
bors r+ |
bors bot
pushed a commit
that referenced
this pull request
Jul 13, 2021
# Objective - CI is failing because of a dependency (`num_enum`) that now uses the latest version of `proc-macro-crate` ``` = proc-macro-crate v0.1.5 ├── ndk-macro v0.2.0 │ ├── ndk-glue v0.2.1 │ │ ├── bevy_asset v0.5.0 │ │ └── bevy_internal v0.5.0 (*) │ └── ndk-glue v0.3.0 │ ├── cpal v0.13.3 │ │ └── rodio v0.14.0 │ │ └── bevy_audio v0.5.0 (*) │ ├── oboe v0.4.2 │ │ └── cpal v0.13.3 (*) │ └── winit v0.25.0 │ ├── bevy_winit v0.5.0 (*) │ └── bevy_winit v0.5.0 (*) └── num_enum_derive v0.4.3 └── num_enum v0.4.3 └── ndk v0.2.1 └── ndk-glue v0.2.1 (*) = proc-macro-crate v1.0.0 └── num_enum_derive v0.5.2 └── num_enum v0.5.2 └── ndk v0.3.0 ├── cpal v0.13.3 │ └── rodio v0.14.0 │ └── bevy_audio v0.5.0 ├── ndk-glue v0.3.0 │ ├── cpal v0.13.3 (*) │ ├── oboe v0.4.2 │ │ └── cpal v0.13.3 (*) │ └── winit v0.25.0 │ ├── bevy_winit v0.5.0 (*) │ └── bevy_winit v0.5.0 (*) ├── oboe v0.4.2 (*) └── winit v0.25.0 (*) ``` ## Solution - Add `proc-macro-crate` as a known duplicate
Pull request successfully merged into main. Build succeeded: |
ostwilkens
pushed a commit
to ostwilkens/bevy
that referenced
this pull request
Jul 27, 2021
# Objective - CI is failing because of a dependency (`num_enum`) that now uses the latest version of `proc-macro-crate` ``` = proc-macro-crate v0.1.5 ├── ndk-macro v0.2.0 │ ├── ndk-glue v0.2.1 │ │ ├── bevy_asset v0.5.0 │ │ └── bevy_internal v0.5.0 (*) │ └── ndk-glue v0.3.0 │ ├── cpal v0.13.3 │ │ └── rodio v0.14.0 │ │ └── bevy_audio v0.5.0 (*) │ ├── oboe v0.4.2 │ │ └── cpal v0.13.3 (*) │ └── winit v0.25.0 │ ├── bevy_winit v0.5.0 (*) │ └── bevy_winit v0.5.0 (*) └── num_enum_derive v0.4.3 └── num_enum v0.4.3 └── ndk v0.2.1 └── ndk-glue v0.2.1 (*) = proc-macro-crate v1.0.0 └── num_enum_derive v0.5.2 └── num_enum v0.5.2 └── ndk v0.3.0 ├── cpal v0.13.3 │ └── rodio v0.14.0 │ └── bevy_audio v0.5.0 ├── ndk-glue v0.3.0 │ ├── cpal v0.13.3 (*) │ ├── oboe v0.4.2 │ │ └── cpal v0.13.3 (*) │ └── winit v0.25.0 │ ├── bevy_winit v0.5.0 (*) │ └── bevy_winit v0.5.0 (*) ├── oboe v0.4.2 (*) └── winit v0.25.0 (*) ``` ## Solution - Add `proc-macro-crate` as a known duplicate
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.
Objective
num_enum
) that now uses the latest version ofproc-macro-crate
Solution
proc-macro-crate
as a known duplicate