about summary refs log tree commit diff
path: root/src/libarena
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-06-09 11:52:41 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-06-17 09:06:59 -0700
commitc44f5399e4dd2f9d55e107d365d6fe98f6491dc9 (patch)
treefe557c5b621a33775c55189ea9fe9210c4d2b9a9 /src/libarena
parentc14d86fd3ff3ba2d01a6e859290b30e74081313b (diff)
downloadrust-c44f5399e4dd2f9d55e107d365d6fe98f6491dc9.tar.gz
rust-c44f5399e4dd2f9d55e107d365d6fe98f6491dc9.zip
alloc: Split apart the global `alloc` feature
Diffstat (limited to 'src/libarena')
-rw-r--r--src/libarena/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs
index 73641647bf4..109ad8a942c 100644
--- a/src/libarena/lib.rs
+++ b/src/libarena/lib.rs
@@ -33,10 +33,11 @@
 #![feature(alloc)]
 #![feature(box_syntax)]
 #![feature(core_intrinsics)]
+#![feature(heap_api)]
+#![feature(oom)]
 #![feature(ptr_as_ref)]
 #![feature(raw)]
 #![feature(staged_api)]
-#![feature(unboxed_closures)]
 #![cfg_attr(test, feature(test))]
 
 extern crate alloc;