diff options
| author | bors <bors@rust-lang.org> | 2013-08-08 00:22:52 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-08-08 00:22:52 -0700 |
| commit | a0080f4e07891c89aa1f9851f8b0a3c754734fe8 (patch) | |
| tree | 3c1dc02b47575f9569a662859b144cfcb587c033 /src/libstd/std.rs | |
| parent | 9db698a81b0d68b093030fe52f941146aba65dd3 (diff) | |
| parent | ffb670ffcd69ed8e7cd13a7f06375ede752349e2 (diff) | |
| download | rust-a0080f4e07891c89aa1f9851f8b0a3c754734fe8.tar.gz rust-a0080f4e07891c89aa1f9851f8b0a3c754734fe8.zip | |
auto merge of #8245 : alexcrichton/rust/fmt2, r=graydon
This is a reopening of #8182, although this removes any abuse of the compiler internals. Now it's just a pure syntax extension (hard coded what the attribute names are).
Diffstat (limited to 'src/libstd/std.rs')
| -rw-r--r-- | src/libstd/std.rs | 3 |
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; } |
