about summary refs log tree commit diff
path: root/src/libstd
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/libstd
parentc14d86fd3ff3ba2d01a6e859290b30e74081313b (diff)
downloadrust-c44f5399e4dd2f9d55e107d365d6fe98f6491dc9.tar.gz
rust-c44f5399e4dd2f9d55e107d365d6fe98f6491dc9.zip
alloc: Split apart the global `alloc` feature
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 8f7ed6388f5..75044881223 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -107,6 +107,7 @@
 #![feature(allow_internal_unstable)]
 #![feature(associated_consts)]
 #![feature(borrow_state)]
+#![feature(box_raw)]
 #![feature(box_syntax)]
 #![feature(char_internals)]
 #![feature(collections)]
@@ -117,6 +118,7 @@
 #![feature(core_prelude)]
 #![feature(core_simd)]
 #![feature(fnbox)]
+#![feature(heap_api)]
 #![feature(int_error_internals)]
 #![feature(into_cow)]
 #![feature(iter_order)]
@@ -126,6 +128,7 @@
 #![feature(macro_reexport)]
 #![feature(no_std)]
 #![feature(num_bits_bytes)]
+#![feature(oom)]
 #![feature(optin_builtin_traits)]
 #![feature(rand)]
 #![feature(raw)]