diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-06-09 14:39:23 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-06-17 09:06:59 -0700 |
| commit | d444d0c357e85c90e73585520e2da74304c7265a (patch) | |
| tree | b64c15147beeccf6cd62eb019d76b16dc5260e22 /src/libstd | |
| parent | c44f5399e4dd2f9d55e107d365d6fe98f6491dc9 (diff) | |
| download | rust-d444d0c357e85c90e73585520e2da74304c7265a.tar.gz rust-d444d0c357e85c90e73585520e2da74304c7265a.zip | |
collections: Split the `collections` feature
This commit also deprecates the `as_string` and `as_slice` free functions in the `string` and `vec` modules.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 75044881223..20211f87689 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -110,7 +110,9 @@ #![feature(box_raw)] #![feature(box_syntax)] #![feature(char_internals)] +#![feature(clone_from_slice)] #![feature(collections)] +#![feature(collections_bound)] #![feature(const_fn)] #![feature(core)] #![feature(core_float)] @@ -126,6 +128,8 @@ #![feature(libc)] #![feature(linkage, thread_local, asm)] #![feature(macro_reexport)] +#![feature(slice_concat_ext)] +#![feature(slice_position_elem)] #![feature(no_std)] #![feature(num_bits_bytes)] #![feature(oom)] @@ -142,6 +146,7 @@ #![feature(unicode)] #![feature(unique)] #![feature(unsafe_no_drop_flag, filling_drop)] +#![feature(vec_push_all)] #![feature(wrapping)] #![feature(zero_one)] #![cfg_attr(test, feature(float_from_str_radix))] |
