From 52c6a4b8daf7a546519dba8a581f1f2c6bea3c9f Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 28 Oct 2013 11:04:24 -0700 Subject: [PATCH] Add rt::io traits to the prelude. These were just waiting to have their std::io counterparts removed, and now that it's been done it's time these get promoted. --- src/libstd/prelude.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/prelude.rs b/src/libstd/prelude.rs index a15ef879e322d..0190b02fbc08f 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;