Silence unstable feature warnings

This commit is contained in:
Matt Brubeck 2015-02-03 12:32:28 -08:00
parent 42edb63090
commit e68ea18edc
1 changed files with 1 additions and 3 deletions

View File

@ -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;