diff options
| author | Clar Charr <clar@charr.xyz> | 2017-12-31 02:08:15 -0500 |
|---|---|---|
| committer | Clar Charr <clar@charr.xyz> | 2018-01-02 22:51:22 -0500 |
| commit | b4b3ddd59e2a041646f7b300ad727a5d4f48a488 (patch) | |
| tree | fba5ba31c8811e1cdec7ca5efa28f2e1048bedea /src/libstd_unicode/lib.rs | |
| parent | b65f0bedd2f22d9661ecb7092f07746dc2ccfb0d (diff) | |
| download | rust-b4b3ddd59e2a041646f7b300ad727a5d4f48a488.tar.gz rust-b4b3ddd59e2a041646f7b300ad727a5d4f48a488.zip | |
Move static code outside of unciode.py.
Diffstat (limited to 'src/libstd_unicode/lib.rs')
| -rw-r--r-- | src/libstd_unicode/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstd_unicode/lib.rs b/src/libstd_unicode/lib.rs index 22f8bdab2f7..dcae7d0af40 100644 --- a/src/libstd_unicode/lib.rs +++ b/src/libstd_unicode/lib.rs @@ -35,15 +35,18 @@ #![feature(core_char_ext)] #![feature(str_internals)] #![feature(decode_utf8)] -#![feature(fused)] #![feature(fn_traits)] +#![feature(fused)] #![feature(lang_items)] +#![feature(non_exhaustive)] #![feature(staged_api)] #![feature(try_from)] #![feature(unboxed_closures)] +mod bool_trie; mod tables; mod u_str; +mod version; pub mod char; pub mod lossy; |
