Skip to content

Commit

Permalink
Mark the rest of the unicode feature flag as perma-unstable.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Apr 11, 2018
1 parent 1ca2905 commit ef41788
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/liballoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
#![feature(trusted_len)]
#![feature(try_reserve)]
#![feature(unboxed_closures)]
#![feature(unicode)]
#![feature(unicode_internals)]
#![feature(unsize)]
#![feature(allocator_internals)]
#![feature(on_unimplemented)]
Expand Down
1 change: 0 additions & 1 deletion src/liballoc/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#![feature(string_retain)]
#![feature(try_reserve)]
#![feature(unboxed_closures)]
#![feature(unicode)]
#![feature(exact_chunks)]
#![feature(inclusive_range_fields)]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/unicode/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![unstable(feature = "unicode", issue = "27783")]
#![unstable(feature = "unicode_internals", issue = "0")]
#![allow(missing_docs)]

mod bool_trie;
Expand Down
1 change: 0 additions & 1 deletion src/librustdoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#![feature(fs_read_write)]
#![feature(set_stdio)]
#![feature(test)]
#![feature(unicode)]
#![feature(vec_remove_item)]
#![feature(entry_and_modify)]

Expand Down
1 change: 0 additions & 1 deletion src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@
#![feature(toowned_clone_into)]
#![feature(try_reserve)]
#![feature(unboxed_closures)]
#![feature(unicode)]
#![feature(untagged_unions)]
#![feature(unwind_attributes)]
#![feature(vec_push_all)]
Expand Down
2 changes: 1 addition & 1 deletion src/libstd_unicode/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
#![no_std]

#![feature(unicode)]
#![feature(unicode_internals)]
#![feature(staged_api)]
#![rustc_deprecated(since = "1.27.0", reason = "moved into libcore")]

Expand Down
2 changes: 1 addition & 1 deletion src/libsyntax/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
html_root_url = "https://doc.rust-lang.org/nightly/",
test(attr(deny(warnings))))]

#![feature(unicode)]
#![feature(unicode_internals)]
#![feature(rustc_diagnostic_macros)]
#![feature(non_exhaustive)]
#![feature(const_atomic_usize_new)]
Expand Down

0 comments on commit ef41788

Please sign in to comment.