about summary refs log tree commit diff
path: root/src/libstd/std.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-07-29 01:12:41 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-08-07 19:21:43 -0700
commitffb670ffcd69ed8e7cd13a7f06375ede752349e2 (patch)
treea3e82ac51c713a80d620128813b4fa653451da97 /src/libstd/std.rs
parent5b4244d917cc9341b1ec04c4e245d5f841d3facc (diff)
downloadrust-ffb670ffcd69ed8e7cd13a7f06375ede752349e2.tar.gz
rust-ffb670ffcd69ed8e7cd13a7f06375ede752349e2.zip
Add initial support for a new formatting syntax
The new macro is available under the name ifmt! (only an intermediate name)
Diffstat (limited to 'src/libstd/std.rs')
-rw-r--r--src/libstd/std.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/std.rs b/src/libstd/std.rs
index 568709c89da..7000b56069d 100644
--- a/src/libstd/std.rs
+++ b/src/libstd/std.rs
@@ -177,6 +177,7 @@ pub mod rand;
 pub mod run;
 pub mod sys;
 pub mod cast;
+pub mod fmt;
 pub mod repr;
 pub mod cleanup;
 pub mod reflect;
@@ -216,4 +217,6 @@ mod std {
     pub use unstable;
     pub use str;
     pub use os;
+    pub use fmt;
+    pub use to_bytes;
 }