about summary refs log tree commit diff
path: root/src/liballoc/str.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-04-05 17:20:08 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-04-12 00:13:51 +0200
commitb2027ef17c03e47a4d716d8ea8148ed785934b04 (patch)
treed70cfc5e32ec8e61f8a612c7c6b4f3e54c044a7b /src/liballoc/str.rs
parent5807be7ccb2c14df9db87a54038221bbf5ae00fa (diff)
downloadrust-b2027ef17c03e47a4d716d8ea8148ed785934b04.tar.gz
rust-b2027ef17c03e47a4d716d8ea8148ed785934b04.zip
Deprecate the std_unicode crate
Diffstat (limited to 'src/liballoc/str.rs')
-rw-r--r--src/liballoc/str.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/liballoc/str.rs b/src/liballoc/str.rs
index d5ef41df0d8..eaca9eb49f9 100644
--- a/src/liballoc/str.rs
+++ b/src/liballoc/str.rs
@@ -45,12 +45,11 @@ use core::str::pattern::{Searcher, ReverseSearcher, DoubleEndedSearcher};
 use core::mem;
 use core::ptr;
 use core::iter::FusedIterator;
-use std_unicode::str::{UnicodeStr, Utf16Encoder};
+use core::unicode::str::{UnicodeStr, Utf16Encoder};
 
 use vec_deque::VecDeque;
 use borrow::{Borrow, ToOwned};
 use string::String;
-use std_unicode;
 use vec::Vec;
 use slice::{SliceConcatExt, SliceIndex};
 use boxed::Box;
@@ -75,7 +74,7 @@ pub use core::str::{from_utf8, from_utf8_mut, Chars, CharIndices, Bytes};
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use core::str::{from_utf8_unchecked, from_utf8_unchecked_mut, ParseBoolError};
 #[stable(feature = "rust1", since = "1.0.0")]
-pub use std_unicode::str::SplitWhitespace;
+pub use core::unicode::str::SplitWhitespace;
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use core::str::pattern;
 
@@ -1960,7 +1959,7 @@ impl str {
         }
 
         fn case_ignoreable_then_cased<I: Iterator<Item = char>>(iter: I) -> bool {
-            use std_unicode::derived_property::{Cased, Case_Ignorable};
+            use core::unicode::derived_property::{Cased, Case_Ignorable};
             match iter.skip_while(|&c| Case_Ignorable(c)).next() {
                 Some(c) => Cased(c),
                 None => false,