Convert unstable to the requested features

This commit is contained in:
Mathijs van de Nes 2015-01-29 17:19:16 +01:00
parent 1a2e5a0fe3
commit 55ebfaaa7c
4 changed files with 5 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#![allow(unstable)]
#![feature(path, io, os)]
extern crate zip;

View file

@ -1,4 +1,4 @@
#![allow(unstable)]
#![feature(os, path, io)]
extern crate zip;

View file

@ -1,4 +1,4 @@
#![allow(unstable)]
#![feature(io, os, path)]
extern crate zip;

View file

@ -2,7 +2,8 @@
#![feature(unsafe_destructor)]
#![warn(missing_docs)]
#![allow(unstable)]
#![feature(core, collections, io, std_misc)]
extern crate time;
extern crate flate2;