about summary refs log tree commit diff
path: root/src/liballoc_jemalloc/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-12-11 13:07:11 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-12-21 09:26:21 -0800
commitcd1848a1a60f40f25019e455b1050efd69707604 (patch)
tree951659efd37119d3e132e2f05225cf9b18060c86 /src/liballoc_jemalloc/lib.rs
parente2834a20e7c5bbfb1502f582545153dc6b25a70c (diff)
downloadrust-cd1848a1a60f40f25019e455b1050efd69707604.tar.gz
rust-cd1848a1a60f40f25019e455b1050efd69707604.zip
Register new snapshots
Lots of cruft to remove!
Diffstat (limited to 'src/liballoc_jemalloc/lib.rs')
-rw-r--r--src/liballoc_jemalloc/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/liballoc_jemalloc/lib.rs b/src/liballoc_jemalloc/lib.rs
index ec6c6ae31c1..413eac3cf79 100644
--- a/src/liballoc_jemalloc/lib.rs
+++ b/src/liballoc_jemalloc/lib.rs
@@ -8,13 +8,10 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![cfg_attr(stage0, feature(custom_attribute))]
 #![crate_name = "alloc_jemalloc"]
 #![crate_type = "rlib"]
-#![cfg_attr(stage0, staged_api)]
 #![no_std]
-#![cfg_attr(not(stage0), allocator)]
-#![cfg_attr(stage0, allow(improper_ctypes))]
+#![allocator]
 #![unstable(feature = "alloc_jemalloc",
             reason = "this library is unlikely to be stabilized in its current \
                       form or name",
@@ -22,7 +19,6 @@
 #![feature(allocator)]
 #![feature(libc)]
 #![feature(staged_api)]
-#![cfg_attr(stage0, feature(no_std))]
 
 extern crate libc;