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/libtest | |
| 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/libtest')
| -rw-r--r-- | src/libtest/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 6ee6f8c2e24..46649689134 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -36,7 +36,6 @@ #![feature(asm)] #![feature(box_syntax)] -#![feature(collections)] #![feature(duration)] #![feature(duration_span)] #![feature(fnbox)] @@ -44,6 +43,7 @@ #![feature(libc)] #![feature(rustc_private)] #![feature(set_stdio)] +#![feature(slice_extras)] #![feature(staged_api)] #![feature(std_misc)] |
