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/libsyntax/lib.rs | |
| 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/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 432cdbdfef0..7333265bdd4 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -26,15 +26,17 @@ html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(associated_consts)] -#![feature(collections)] -#![feature(collections_drain)] +#![feature(bitset)] +#![feature(drain)] #![feature(filling_drop)] #![feature(libc)] #![feature(ref_slice)] #![feature(rustc_private)] #![feature(staged_api)] #![feature(str_char)] +#![feature(str_escape)] #![feature(unicode)] +#![feature(vec_push_all)] extern crate fmt_macros; extern crate serialize; |
