Skip to content

Commit 2972b77

Browse files
committed
Add issue for the rustc_private feature everywhere
1 parent 5f62562 commit 2972b77

File tree

24 files changed

+28
-24
lines changed

24 files changed

+28
-24
lines changed

src/libarena/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
2323
#![cfg_attr(stage0, feature(custom_attribute))]
2424
#![crate_name = "arena"]
25-
#![unstable(feature = "rustc_private")]
25+
#![unstable(feature = "rustc_private", issue = "27812")]
2626
#![staged_api]
2727
#![crate_type = "rlib"]
2828
#![crate_type = "dylib"]

src/libflate/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
1818
#![cfg_attr(stage0, feature(custom_attribute))]
1919
#![crate_name = "flate"]
20-
#![unstable(feature = "rustc_private")]
20+
#![unstable(feature = "rustc_private", issue = "27812")]
2121
#![staged_api]
2222
#![crate_type = "rlib"]
2323
#![crate_type = "dylib"]

src/libfmt_macros/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
1818
#![cfg_attr(stage0, feature(custom_attribute))]
1919
#![crate_name = "fmt_macros"]
20-
#![unstable(feature = "rustc_private")]
20+
#![unstable(feature = "rustc_private", issue = "27812")]
2121
#![staged_api]
2222
#![crate_type = "rlib"]
2323
#![crate_type = "dylib"]

src/libgetopts/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@
8080
#![cfg_attr(stage0, feature(custom_attribute))]
8181
#![crate_name = "getopts"]
8282
#![unstable(feature = "rustc_private",
83-
reason = "use the crates.io `getopts` library instead")]
83+
reason = "use the crates.io `getopts` library instead",
84+
issue = "27812")]
8485
#![staged_api]
8586
#![crate_type = "rlib"]
8687
#![crate_type = "dylib"]

src/libgraphviz/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@
276276
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
277277
#![cfg_attr(stage0, feature(custom_attribute))]
278278
#![crate_name = "graphviz"]
279-
#![unstable(feature = "rustc_private")]
279+
#![unstable(feature = "rustc_private", issue = "27812")]
280280
#![feature(staged_api)]
281281
#![staged_api]
282282
#![crate_type = "rlib"]

src/liblog/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@
159159
#![cfg_attr(stage0, feature(custom_attribute))]
160160
#![crate_name = "log"]
161161
#![unstable(feature = "rustc_private",
162-
reason = "use the crates.io `log` library instead")]
162+
reason = "use the crates.io `log` library instead",
163+
issue = "27812")]
163164
#![staged_api]
164165
#![crate_type = "rlib"]
165166
#![crate_type = "dylib"]

src/librbml/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
115115
#![cfg_attr(stage0, feature(custom_attribute))]
116116
#![crate_name = "rbml"]
117-
#![unstable(feature = "rustc_private")]
117+
#![unstable(feature = "rustc_private", issue = "27812")]
118118
#![staged_api]
119119
#![crate_type = "rlib"]
120120
#![crate_type = "dylib"]

src/librustc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
1818
#![cfg_attr(stage0, feature(custom_attribute))]
1919
#![crate_name = "rustc"]
20-
#![unstable(feature = "rustc_private")]
20+
#![unstable(feature = "rustc_private", issue = "27812")]
2121
#![staged_api]
2222
#![crate_type = "dylib"]
2323
#![crate_type = "rlib"]

src/librustc_back/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
2525
#![cfg_attr(stage0, feature(custom_attribute))]
2626
#![crate_name = "rustc_back"]
27-
#![unstable(feature = "rustc_private")]
27+
#![unstable(feature = "rustc_private", issue = "27812")]
2828
#![staged_api]
2929
#![crate_type = "dylib"]
3030
#![crate_type = "rlib"]

src/librustc_bitflags/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#![crate_type = "rlib"]
1919
#![feature(no_std)]
2020
#![no_std]
21-
#![unstable(feature = "rustc_private")]
21+
#![unstable(feature = "rustc_private", issue = "27812")]
2222

2323
//! A typesafe bitmask flag generator.
2424

0 commit comments

Comments
 (0)