about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-04-09 17:42:22 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-04-14 10:14:11 -0700
commitbf4e77d4b543632ca4df8fdd7092850dffc3954b (patch)
treec4b56d2a5974e1b3bf4bfc8b7ca1a62d64c2c341 /src/libstd/lib.rs
parentdabf0c6371d3b193664f58746fa27c1835a010f3 (diff)
downloadrust-bf4e77d4b543632ca4df8fdd7092850dffc3954b.tar.gz
rust-bf4e77d4b543632ca4df8fdd7092850dffc3954b.zip
std: Remove old_io/old_path/rand modules
This commit entirely removes the old I/O, path, and rand modules. All
functionality has been deprecated and unstable for quite some time now!
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index b329494a052..23776ecbc6e 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -262,12 +262,9 @@ pub mod ffi;
 pub mod fs;
 pub mod io;
 pub mod net;
-pub mod old_io;
-pub mod old_path;
 pub mod os;
 pub mod path;
 pub mod process;
-pub mod rand;
 pub mod sync;
 pub mod time;
 
@@ -281,6 +278,7 @@ pub mod time;
 
 pub mod rt;
 mod panicking;
+mod rand;
 
 // Modules that exist purely to document + host impl docs for primitive types
 
@@ -297,8 +295,6 @@ mod std {
     pub use sync; // used for select!()
     pub use error; // used for try!()
     pub use fmt; // used for any formatting strings
-    #[allow(deprecated)]
-    pub use old_io; // used for println!()
     pub use option; // used for bitflags!{}
     pub use rt; // used for panic!()
     pub use vec; // used for vec![]