Rename 'librustc_unicode' crate to 'libstd_unicode'.

Fixes #26554.
This commit is contained in:
Corey Farwell
2016-11-29 14:38:08 -05:00
committed by Corey Farwell
parent f50dbd580f
commit 274777a158
26 changed files with 44 additions and 44 deletions

View File

@@ -324,7 +324,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
@@ -421,7 +421,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;