diff options
Diffstat (limited to 'src/libregex/lib.rs')
| -rw-r--r-- | src/libregex/lib.rs | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs index 3e80bc78d02..9631eb36056 100644 --- a/src/libregex/lib.rs +++ b/src/libregex/lib.rs @@ -16,7 +16,7 @@ #![crate_name = "regex"] #![crate_type = "rlib"] #![crate_type = "dylib"] -#![unstable(feature = "unnamed_feature", +#![unstable(feature = "rustc_private", reason = "use the crates.io `regex` library instead")] #![feature(staged_api)] #![staged_api] @@ -28,9 +28,11 @@ #![allow(unknown_features)] #![feature(slicing_syntax)] #![feature(box_syntax)] -#![feature(unnamed_feature)] #![allow(unknown_features)] #![feature(int_uint)] #![deny(missing_docs)] +#![feature(collections)] +#![feature(core)] +#![feature(unicode)] #[cfg(test)] extern crate "test" as stdtest; | 
