Browse Source

Silence unstable feature warnings

Matt Brubeck 10 years ago
parent
commit
e68ea18edc
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/lib.rs

+ 1 - 3
src/lib.rs

@@ -44,15 +44,13 @@
 //!
 //! [newt]: https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method
 
-#![feature(slicing_syntax, core)]
+#![feature(slicing_syntax, collections, core, hash, rand, std_misc)]
 #![cfg_attr(test, deny(warnings))]
 #![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/num/",
        html_playground_url = "http://play.rust-lang.org/")]
 
-#![allow(unstable)]
-
 extern crate "rustc-serialize" as rustc_serialize;
 extern crate core;