about summary refs log tree commit diff
path: root/src/libcore/lib.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-04-05 17:09:28 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-04-12 00:13:43 +0200
commit5807be7ccb2c14df9db87a54038221bbf5ae00fa (patch)
tree9f929cd883f06c42c62d985cad4e06c9b683a066 /src/libcore/lib.rs
parentf87d4a15a82a76e7510629173c366d084f2c02ca (diff)
downloadrust-5807be7ccb2c14df9db87a54038221bbf5ae00fa.tar.gz
rust-5807be7ccb2c14df9db87a54038221bbf5ae00fa.zip
Move contents of libstd_unicode into libcore
Diffstat (limited to 'src/libcore/lib.rs')
-rw-r--r--src/libcore/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index e194b173aa7..7cb635a299a 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -180,6 +180,8 @@ pub mod hash;
 pub mod fmt;
 pub mod time;
 
+pub mod unicode;
+
 /* Heap memory allocator trait */
 #[allow(missing_docs)]
 pub mod heap;