about summary refs log tree commit diff
path: root/src/libsync/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-11 18:47:09 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-14 10:28:09 -0700
commitf20b1293fcce4e120bd4a57226e0817271cd672c (patch)
tree1f7f2d9e04093a3473a7057940f715e007128496 /src/libsync/lib.rs
parentd64f18c490981f33f33e9c24e1ed1316e63f11fc (diff)
downloadrust-f20b1293fcce4e120bd4a57226e0817271cd672c.tar.gz
rust-f20b1293fcce4e120bd4a57226e0817271cd672c.zip
Register new snapshots
Diffstat (limited to 'src/libsync/lib.rs')
-rw-r--r--src/libsync/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs
index 66ca10b196c..4e8617e48c3 100644
--- a/src/libsync/lib.rs
+++ b/src/libsync/lib.rs
@@ -30,9 +30,6 @@
 #![deny(missing_doc)]
 #![no_std]
 
-#[cfg(stage0)]
-#[phase(syntax, link)] extern crate core;
-#[cfg(not(stage0))]
 #[phase(plugin, link)] extern crate core;
 extern crate alloc;
 extern crate collections;
@@ -40,8 +37,7 @@ extern crate rustrt;
 
 #[cfg(test)] extern crate test;
 #[cfg(test)] extern crate native;
-#[cfg(test, stage0)] #[phase(syntax, link)] extern crate std;
-#[cfg(test, not(stage0))] #[phase(plugin, link)] extern crate std;
+#[cfg(test)] #[phase(plugin, link)] extern crate std;
 
 pub use alloc::arc::{Arc, Weak};
 pub use lock::{Mutex, MutexGuard, Condvar, Barrier,