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.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs
index d19ce3b460a..45f42336ceb 100644
--- a/src/libregex/lib.rs
+++ b/src/libregex/lib.rs
@@ -16,7 +16,7 @@
 #![crate_name = "regex"]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
-#![experimental = "use the crates.io `regex` library instead"]
+#![unstable = "use the crates.io `regex` library instead"]
 #![staged_api]
 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
        html_favicon_url = "http://www.rust-lang.org/favicon.ico",
@@ -26,6 +26,7 @@
 #![allow(unknown_features)]
 #![feature(slicing_syntax)]
 #![feature(box_syntax)]
+#![allow(unknown_features)] #![feature(int_uint)]
 #![deny(missing_docs)]
 
 #[cfg(test)]