Silence unstable feature warnings
This commit is contained in:
parent
42edb63090
commit
e68ea18edc
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue