about summary refs log tree commit diff
path: root/src/libcollections/lib.rs
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/libcollections/lib.rs
parentc14d86fd3ff3ba2d01a6e859290b30e74081313b (diff)
downloadrust-c44f5399e4dd2f9d55e107d365d6fe98f6491dc9.tar.gz
rust-c44f5399e4dd2f9d55e107d365d6fe98f6491dc9.zip
alloc: Split apart the global `alloc` feature
Diffstat (limited to 'src/libcollections/lib.rs')
-rw-r--r--src/libcollections/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs
index 0c1349bc2e6..ecf5bace382 100644
--- a/src/libcollections/lib.rs
+++ b/src/libcollections/lib.rs
@@ -29,6 +29,7 @@
 
 #![feature(alloc)]
 #![feature(box_patterns)]
+#![feature(box_raw)]
 #![feature(box_syntax)]
 #![feature(copy_lifetime)]
 #![feature(core)]
@@ -36,6 +37,7 @@
 #![feature(core_prelude)]
 #![feature(core_slice_ext)]
 #![feature(core_str_ext)]
+#![feature(heap_api)]
 #![feature(iter_cmp)]
 #![feature(iter_idx)]
 #![feature(iter_order)]
@@ -43,6 +45,7 @@
 #![feature(iter_sum)]
 #![feature(lang_items)]
 #![feature(num_bits_bytes)]
+#![feature(oom)]
 #![feature(pattern)]
 #![feature(ptr_as_ref)]
 #![feature(raw)]