about summary refs log tree commit diff
path: root/src/libflate/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libflate/lib.rs')
-rw-r--r--src/libflate/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs
index 9c67748f9c5..5f3a68a9e34 100644
--- a/src/libflate/lib.rs
+++ b/src/libflate/lib.rs
@@ -15,16 +15,18 @@
 //! [mz]: https://code.google.com/p/miniz/
 
 #![crate_name = "flate"]
-#![unstable(feature = "unnamed_feature")]
+#![unstable(feature = "rustc_private")]
 #![feature(staged_api)]
 #![staged_api]
 #![allow(unknown_features)] #![feature(int_uint)]
-#![feature(unnamed_feature)]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![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",
        html_root_url = "http://doc.rust-lang.org/nightly/")]
+#![feature(hash)]
+#![feature(core)]
+#![feature(libc)]
 
 #[cfg(test)] #[macro_use] extern crate log;