Skip to content

Commit a278a81

Browse files
committed
Mark the rest of the unicode feature flag as perma-unstable.
1 parent 542bb9f commit a278a81

File tree

7 files changed

+4
-7
lines changed

7 files changed

+4
-7
lines changed

Diff for: src/liballoc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
#![feature(trusted_len)]
114114
#![feature(try_reserve)]
115115
#![feature(unboxed_closures)]
116-
#![feature(unicode)]
116+
#![feature(unicode_internals)]
117117
#![feature(unsize)]
118118
#![feature(allocator_internals)]
119119
#![feature(on_unimplemented)]

Diff for: src/liballoc/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
#![feature(string_retain)]
2525
#![feature(try_reserve)]
2626
#![feature(unboxed_closures)]
27-
#![feature(unicode)]
2827
#![feature(exact_chunks)]
2928
#![feature(inclusive_range_fields)]
3029

Diff for: src/libcore/unicode/mod.rs

+1-1
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;

Diff for: src/librustdoc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#![feature(fs_read_write)]
2121
#![feature(set_stdio)]
2222
#![feature(test)]
23-
#![feature(unicode)]
2423
#![feature(vec_remove_item)]
2524
#![feature(entry_and_modify)]
2625

Diff for: src/libstd/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@
307307
#![feature(toowned_clone_into)]
308308
#![feature(try_reserve)]
309309
#![feature(unboxed_closures)]
310-
#![feature(unicode)]
311310
#![feature(untagged_unions)]
312311
#![feature(unwind_attributes)]
313312
#![feature(vec_push_all)]

Diff for: src/libstd_unicode/lib.rs

+1-1
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

Diff for: src/libsyntax/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
html_root_url = "https://doc.rust-lang.org/nightly/",
2020
test(attr(deny(warnings))))]
2121

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

0 commit comments

Comments
 (0)