about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-25 16:48:26 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-11-03 15:15:41 -0800
commitd7b6502784cad759cee9961426313017f052d5ba (patch)
tree9abb57193a44bef0eb48ff9cb7295e335daf4fb9
parent702767db65c9b9d4e601ec5de836246fb9a9e462 (diff)
downloadrust-d7b6502784cad759cee9961426313017f052d5ba.tar.gz
rust-d7b6502784cad759cee9961426313017f052d5ba.zip
Move rt::io traits into the prelude
These traits belong here, and were simply waiting for the std::io traits to get
removed. It's time they take their rightful positions!
-rw-r--r--src/libstd/prelude.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/prelude.rs b/src/libstd/prelude.rs
index a15ef879e32..0190b02fbc0 100644
--- a/src/libstd/prelude.rs
+++ b/src/libstd/prelude.rs
@@ -67,6 +67,7 @@ pub use num::{Orderable, Signed, Unsigned, Round};
 pub use num::{Primitive, Int, Float, ToStrRadix, ToPrimitive, FromPrimitive};
 pub use path::{GenericPath, Path, PosixPath, WindowsPath};
 pub use ptr::RawPtr;
+pub use rt::io::{Writer, Reader, Seek};
 pub use send_str::{SendStr, SendStrOwned, SendStrStatic, IntoSendStr};
 pub use str::{Str, StrVector, StrSlice, OwnedStr};
 pub use to_bytes::IterBytes;