about summary refs log tree commit diff
path: root/src/libstd_unicode/lib.rs
diff options
context:
space:
mode:
authorStepan Koltsov <stepan.koltsov@gmail.com>2017-06-12 20:07:54 +0300
committerStepan Koltsov <stepan.koltsov@gmail.com>2017-06-15 20:42:35 +0100
commitea149b8571d538fc8bb2117e46161d442aef48a4 (patch)
tree3ba3ef157bf2a05918fc5b6f108cd54cf3e24199 /src/libstd_unicode/lib.rs
parent258ae6dd9b1a8ac97986852fc9f00f7687004ccb (diff)
downloadrust-ea149b8571d538fc8bb2117e46161d442aef48a4.tar.gz
rust-ea149b8571d538fc8bb2117e46161d442aef48a4.zip
Utf8Lossy type with chunks iterator and impl Display and Debug
Diffstat (limited to 'src/libstd_unicode/lib.rs')
-rw-r--r--src/libstd_unicode/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd_unicode/lib.rs b/src/libstd_unicode/lib.rs
index 19f2ad1c56f..98624800b4c 100644
--- a/src/libstd_unicode/lib.rs
+++ b/src/libstd_unicode/lib.rs
@@ -34,6 +34,8 @@
 
 #![feature(char_escape_debug)]
 #![feature(core_char_ext)]
+#![feature(str_internals)]
+#![feature(core_intrinsics)]
 #![feature(decode_utf8)]
 #![feature(fused)]
 #![feature(fn_traits)]
@@ -45,6 +47,7 @@
 mod tables;
 mod u_str;
 pub mod char;
+pub mod lossy;
 
 #[allow(deprecated)]
 pub mod str {