about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2015-02-05 21:08:02 -0800
committerKeegan McAllister <kmcallister@mozilla.com>2015-02-07 10:49:58 -0800
commitea85d43903ead3317bf6153fea9f77a5c4a904f1 (patch)
tree898c7bc84c377281a07163e63c6934b7209676e4 /src/libstd/lib.rs
parenta246b6542a6660f725441dd016bddd470c761e4c (diff)
downloadrust-ea85d43903ead3317bf6153fea9f77a5c4a904f1.tar.gz
rust-ea85d43903ead3317bf6153fea9f77a5c4a904f1.zip
Make std::fmt a simple re-export from collections
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 2a523356f62..9a9a554ec98 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -181,6 +181,7 @@ pub use core::error;
 #[cfg(not(test))] pub use alloc::boxed;
 pub use alloc::rc;
 
+pub use core_collections::fmt;
 pub use core_collections::slice;
 pub use core_collections::str;
 pub use core_collections::string;
@@ -246,7 +247,6 @@ pub mod thread_local;
 
 pub mod dynamic_lib;
 pub mod ffi;
-pub mod fmt;
 pub mod old_io;
 pub mod io;
 pub mod os;