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

src/librustc_borrowck/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
1212
#![cfg_attr(stage0, feature(custom_attribute))]
1313
#![crate_name = "rustc_borrowck"]
14-
#![unstable(feature = "rustc_private")]
14+
#![unstable(feature = "rustc_private", issue = "27812")]
1515
#![staged_api]
1616
#![crate_type = "dylib"]
1717
#![crate_type = "rlib"]

src/librustc_data_structures/lib.rs

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

src/librustc_driver/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_driver"]
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_lint/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 = "rustc_lint"]
25-
#![unstable(feature = "rustc_private")]
25+
#![unstable(feature = "rustc_private", issue = "27812")]
2626
#![staged_api]
2727
#![crate_type = "dylib"]
2828
#![crate_type = "rlib"]

src/librustc_llvm/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#![allow(trivial_casts)]
1818

1919
#![crate_name = "rustc_llvm"]
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_privacy/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
1212
#![cfg_attr(stage0, feature(custom_attribute))]
1313
#![crate_name = "rustc_privacy"]
14-
#![unstable(feature = "rustc_private")]
14+
#![unstable(feature = "rustc_private", issue = "27812")]
1515
#![staged_api]
1616
#![crate_type = "dylib"]
1717
#![crate_type = "rlib"]

src/librustc_resolve/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
1212
#![cfg_attr(stage0, feature(custom_attribute))]
1313
#![crate_name = "rustc_resolve"]
14-
#![unstable(feature = "rustc_private")]
14+
#![unstable(feature = "rustc_private", issue = "27812")]
1515
#![staged_api]
1616
#![crate_type = "dylib"]
1717
#![crate_type = "rlib"]

src/librustc_trans/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_trans"]
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_typeck/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ This API is completely unstable and subject to change.
6565
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
6666
#![cfg_attr(stage0, feature(custom_attribute))]
6767
#![crate_name = "rustc_typeck"]
68-
#![unstable(feature = "rustc_private")]
68+
#![unstable(feature = "rustc_private", issue = "27812")]
6969
#![staged_api]
7070
#![crate_type = "dylib"]
7171
#![crate_type = "rlib"]

src/librustdoc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
1212
#![cfg_attr(stage0, feature(custom_attribute))]
1313
#![crate_name = "rustdoc"]
14-
#![unstable(feature = "rustdoc")]
14+
#![unstable(feature = "rustdoc", issue = "27812")]
1515
#![staged_api]
1616
#![crate_type = "dylib"]
1717
#![crate_type = "rlib"]

src/libserialize/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ Core encoding and decoding interfaces.
1818
#![cfg_attr(stage0, feature(custom_attribute))]
1919
#![crate_name = "serialize"]
2020
#![unstable(feature = "rustc_private",
21-
reason = "deprecated in favor of rustc-serialize on crates.io")]
21+
reason = "deprecated in favor of rustc-serialize on crates.io",
22+
issue = "27812")]
2223
#![staged_api]
2324
#![crate_type = "rlib"]
2425
#![crate_type = "dylib"]

src/libsyntax/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 = "syntax"]
20-
#![unstable(feature = "rustc_private")]
20+
#![unstable(feature = "rustc_private", issue = "27812")]
2121
#![staged_api]
2222
#![crate_type = "dylib"]
2323
#![crate_type = "rlib"]

src/libterm/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
#![cfg_attr(stage0, feature(custom_attribute))]
4646
#![crate_name = "term"]
4747
#![unstable(feature = "rustc_private",
48-
reason = "use the crates.io `term` library instead")]
48+
reason = "use the crates.io `term` library instead",
49+
issue = "27812")]
4950
#![staged_api]
5051
#![crate_type = "rlib"]
5152
#![crate_type = "dylib"]

src/libtest/lib.rs

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

0 commit comments

Comments
 (0)