Auto merge of #38049 - frewsxcv:libunicode, r=alexcrichton

Rename 'librustc_unicode' crate to 'libstd_unicode'.

Fixes https://github.com/rust-lang/rust/issues/26554.
This commit is contained in:
bors
2016-12-12 13:19:33 +00:00
26 changed files with 44 additions and 44 deletions

View File

@@ -323,7 +323,7 @@ extern crate collections as core_collections;
#[allow(deprecated)] extern crate rand as core_rand;
extern crate alloc;
extern crate rustc_unicode;
extern crate std_unicode;
extern crate libc;
// We always need an unwinder currently for backtraces
@@ -420,7 +420,7 @@ pub use core_collections::string;
#[stable(feature = "rust1", since = "1.0.0")]
pub use core_collections::vec;
#[stable(feature = "rust1", since = "1.0.0")]
pub use rustc_unicode::char;
pub use std_unicode::char;
pub mod f32;
pub mod f64;