Suppress some warnings about features

This commit is contained in:
Alex Crichton
2015-03-06 15:11:59 -08:00
parent 16ff1401d8
commit 1a30412ebf
3 changed files with 4 additions and 0 deletions

View File

@@ -44,7 +44,9 @@
#![feature(path)] #![feature(path)]
#![feature(io)] #![feature(io)]
#![feature(path_ext)] #![feature(path_ext)]
#![feature(str_words)]
#![cfg_attr(test, feature(test))] #![cfg_attr(test, feature(test))]
extern crate arena; extern crate arena;
extern crate flate; extern crate flate;
extern crate fmt_macros; extern crate fmt_macros;

View File

@@ -44,6 +44,7 @@
#![feature(os)] #![feature(os)]
#![feature(path_ext)] #![feature(path_ext)]
#![feature(fs)] #![feature(fs)]
#![feature(hash)]
extern crate arena; extern crate arena;
extern crate flate; extern crate flate;

View File

@@ -38,6 +38,7 @@
#![feature(str_words)] #![feature(str_words)]
#![feature(io)] #![feature(io)]
#![feature(path)] #![feature(path)]
#![feature(file_path)]
#![feature(path_ext)] #![feature(path_ext)]
extern crate arena; extern crate arena;