diff options
| author | Stepan Koltsov <stepan.koltsov@gmail.com> | 2017-06-12 20:07:54 +0300 |
|---|---|---|
| committer | Stepan Koltsov <stepan.koltsov@gmail.com> | 2017-06-15 20:42:35 +0100 |
| commit | ea149b8571d538fc8bb2117e46161d442aef48a4 (patch) | |
| tree | 3ba3ef157bf2a05918fc5b6f108cd54cf3e24199 /src/libstd_unicode/lib.rs | |
| parent | 258ae6dd9b1a8ac97986852fc9f00f7687004ccb (diff) | |
| download | rust-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.rs | 3 |
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 { |
