about summary refs log tree commit diff
path: root/src/libextra
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-02-12 16:40:17 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-02-13 12:54:17 -0800
commit1c5295c0bf6e69a772120ec6a56e0fdb3021ded4 (patch)
treeb4c3ab032249a36a7885046556949d086f390366 /src/libextra
parent44e6883d1462ed4072b1d6a3ce6702bc14065045 (diff)
downloadrust-1c5295c0bf6e69a772120ec6a56e0fdb3021ded4.tar.gz
rust-1c5295c0bf6e69a772120ec6a56e0fdb3021ded4.zip
Register new snapshots
Diffstat (limited to 'src/libextra')
-rw-r--r--src/libextra/lib.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/libextra/lib.rs b/src/libextra/lib.rs
index e0200f48cfe..c630ac096f6 100644
--- a/src/libextra/lib.rs
+++ b/src/libextra/lib.rs
@@ -35,20 +35,10 @@ Rust extras are part of the standard Rust distribution.
 #[deny(missing_doc)];
 
 extern mod sync;
-#[cfg(not(stage0))]
 extern mod serialize;
 
 extern mod collections;
 
-#[cfg(stage0)]
-pub mod serialize {
-    #[allow(missing_doc)];
-    // Temp re-export until after a snapshot
-    extern mod serialize = "serialize";
-    pub use self::serialize::{Encoder, Decoder, Encodable, Decodable,
-                                   EncoderHelpers, DecoderHelpers};
-}
-
 // Utility modules
 
 pub mod c_vec;