Skip to content

Commit 663b266

Browse files
committed
Mark the rest of the unicode feature flag as perma-unstable.
1 parent 68a668f commit 663b266

File tree

7 files changed

+4
-7
lines changed

7 files changed

+4
-7
lines changed

src/liballoc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
#![feature(trusted_len)]
115115
#![feature(try_reserve)]
116116
#![feature(unboxed_closures)]
117-
#![feature(unicode)]
117+
#![feature(unicode_internals)]
118118
#![feature(unsize)]
119119
#![feature(allocator_internals)]
120120
#![feature(on_unimplemented)]

src/liballoc/tests/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
#![feature(string_retain)]
2727
#![feature(try_reserve)]
2828
#![feature(unboxed_closures)]
29-
#![feature(unicode)]
3029
#![feature(exact_chunks)]
3130
#![feature(inclusive_range_fields)]
3231

src/libcore/unicode/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![unstable(feature = "unicode", issue = "27783")]
11+
#![unstable(feature = "unicode_internals", issue = "0")]
1212
#![allow(missing_docs)]
1313

1414
mod bool_trie;

src/librustdoc/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#![feature(fs_read_write)]
2222
#![feature(set_stdio)]
2323
#![feature(test)]
24-
#![feature(unicode)]
2524
#![feature(vec_remove_item)]
2625
#![feature(entry_and_modify)]
2726

src/libstd/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,6 @@
311311
#![feature(toowned_clone_into)]
312312
#![feature(try_reserve)]
313313
#![feature(unboxed_closures)]
314-
#![feature(unicode)]
315314
#![feature(untagged_unions)]
316315
#![feature(unwind_attributes)]
317316
#![feature(vec_push_all)]

src/libstd_unicode/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
3030
#![no_std]
3131

32-
#![feature(unicode)]
32+
#![feature(unicode_internals)]
3333
#![feature(staged_api)]
3434
#![rustc_deprecated(since = "1.27.0", reason = "moved into libcore")]
3535

src/libsyntax/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
test(attr(deny(warnings))))]
2121
#![deny(warnings)]
2222

23-
#![feature(unicode)]
23+
#![feature(unicode_internals)]
2424
#![feature(rustc_diagnostic_macros)]
2525
#![feature(non_exhaustive)]
2626
#![feature(const_atomic_usize_new)]

0 commit comments

Comments
 (0)