-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Tidy: allow common lang+lib features #43247
Conversation
This allows changes to the Rust language that have both library and language components share one feature gate. The feature gates need to be "about the same change", so that both library and language components must either be both unstable, or both stable, and share the tracking issue. Removes the ugly "proc_macro" exception. Closes rust-lang#43089
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
@bors: r+ |
📌 Commit 94fc09c has been approved by |
⌛ Testing commit 94fc09c with merge 1d375595c6a789318593f53fbbb183d9815ffd6b... |
💔 Test failed - status-travis |
@bors retry |
⌛ Testing commit 94fc09c with merge 7aeabc6a04819ff1681efc204df2dea277206e49... |
💔 Test failed - status-appveyor |
@bors retry -- intermittent network (service) issue or downtime |
⌛ Testing commit 94fc09c with merge 2a1fb5d3180258642ae600954201f21e770172d4... |
💔 Test failed - status-appveyor |
@bors: retry
…On Wed, Jul 19, 2017 at 3:58 AM, bors ***@***.***> wrote:
💔 Test failed - status-appveyor
<https://ci.appveyor.com/project/rust-lang/rust/build/1.0.3971>
—
You are receiving this because you were assigned.
Reply to this email directly, view it on GitHub
<#43247 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAD95Jkdq9boDmu-CZAGS_mvtPYQHgXtks5sPcUugaJpZM4OY6GL>
.
|
Tidy: allow common lang+lib features This allows changes to the Rust language that have both library and language components share one feature gate. The feature gates need to be "about the same change", so that both library and language components must either be both unstable, or both stable, and share the tracking issue. Removes the ugly "proc_macro" exception added by #40939. Closes #43089
☀️ Test successful - status-appveyor, status-travis |
This allows changes to the Rust language that have both library
and language components share one feature gate.
The feature gates need to be "about the same change", so that both
library and language components must either be both unstable, or
both stable, and share the tracking issue.
Removes the ugly "proc_macro" exception added by #40939.
Closes #43089