about summary refs log tree commit diff
path: root/src/libregex/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libregex/lib.rs')
-rw-r--r--src/libregex/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs
index 0084be49b56..c039abc9aff 100644
--- a/src/libregex/lib.rs
+++ b/src/libregex/lib.rs
@@ -13,7 +13,6 @@
 //! Regular expressions implemented in Rust
 //!
 //! For official documentation, see the rust-lang/regex crate
-
 #![crate_name = "regex"]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
@@ -24,9 +23,7 @@
        html_playground_url = "http://play.rust-lang.org/")]
 
 #![allow(unknown_features)]
-#![feature(macro_rules, slicing_syntax, globs)]
-#![feature(unboxed_closures)]
-#![feature(associated_types)]
+#![feature(slicing_syntax)]
 #![deny(missing_docs)]
 
 #[cfg(test)]