diff options
Diffstat (limited to 'src/libarena/lib.rs')
| -rw-r--r-- | src/libarena/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs index 79025e639c8..de0f15dd08d 100644 --- a/src/libarena/lib.rs +++ b/src/libarena/lib.rs @@ -20,7 +20,7 @@ //! more complex, slower arena which can hold objects of any type. #![crate_name = "arena"] -#![unstable(feature = "unnamed_feature")] +#![unstable(feature = "rustc_private")] #![feature(staged_api)] #![staged_api] #![crate_type = "rlib"] @@ -33,9 +33,10 @@ #![feature(unsafe_destructor)] #![feature(unboxed_closures)] #![feature(box_syntax)] -#![feature(unnamed_feature)] #![allow(unknown_features)] #![feature(int_uint)] #![allow(missing_docs)] +#![feature(alloc)] +#![feature(core)] extern crate alloc; |
