Skip to content

Commit d581dc0

Browse files
committed
---
yaml --- r: 232434 b: refs/heads/try c: 2972b77 h: refs/heads/master v: v3
1 parent 5403faa commit d581dc0

File tree

25 files changed

+29
-25
lines changed

25 files changed

+29
-25
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: edeb4f1c86cbf6af8ef9874d4b3af50f721ea1b8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: 5f625620b5e4e29919400a0ee863942e5bf3d970
4+
refs/heads/try: 2972b771344f5f16df0468d792df178614740b56
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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

branches/try/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"]

branches/try/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]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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"]

branches/try/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)