about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorFlavio Percoco <flaper87@gmail.com>2014-03-23 11:37:31 +0100
committerFlavio Percoco <flaper87@gmail.com>2014-03-23 11:37:31 +0100
commit576e36e674d645cd4682cf2df43fb25c3d1a71d4 (patch)
tree3d53cbf1db37999af25297e739d495a718721faa /src/libstd/lib.rs
parent2ddb60565423bdc225ccc8dd4ebfb653c5650ba2 (diff)
downloadrust-576e36e674d645cd4682cf2df43fb25c3d1a71d4.tar.gz
rust-576e36e674d645cd4682cf2df43fb25c3d1a71d4.zip
Register new snapshots
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 8a890d0293c..021a932fc8b 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -58,7 +58,6 @@
 #[no_std];
 
 #[deny(missing_doc)];
-#[allow(deprecated_owned_vector)]; // NOTE: remove after stage0
 
 // When testing libstd, bring in libuv as the I/O backend so tests can print
 // things and all of the std::io tests have an I/O interface to run on top
@@ -78,9 +77,6 @@
 #[cfg(test)] pub use cmp = realstd::cmp;
 #[cfg(test)] pub use ty = realstd::ty;
 
-#[cfg(stage0)]
-pub use vec_ng = vec;
-
 // Run tests with libgreen instead of libnative.
 //
 // FIXME: This egregiously hacks around starting the test runner in a different