From 55ebfaaa7cf8008f4a078069eea1bf92cd2978e1 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Thu, 29 Jan 2015 17:19:16 +0100 Subject: [PATCH] Convert unstable to the requested features --- examples/extract.rs | 2 +- examples/extract_lorem.rs | 2 +- examples/write_sample.rs | 2 +- src/lib.rs | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/extract.rs b/examples/extract.rs index 6b4257c8..a94c70cc 100644 --- a/examples/extract.rs +++ b/examples/extract.rs @@ -1,4 +1,4 @@ -#![allow(unstable)] +#![feature(path, io, os)] extern crate zip; diff --git a/examples/extract_lorem.rs b/examples/extract_lorem.rs index 3f2b3eb8..c4cb4168 100644 --- a/examples/extract_lorem.rs +++ b/examples/extract_lorem.rs @@ -1,4 +1,4 @@ -#![allow(unstable)] +#![feature(os, path, io)] extern crate zip; diff --git a/examples/write_sample.rs b/examples/write_sample.rs index 52e94716..ace34744 100644 --- a/examples/write_sample.rs +++ b/examples/write_sample.rs @@ -1,4 +1,4 @@ -#![allow(unstable)] +#![feature(io, os, path)] extern crate zip; diff --git a/src/lib.rs b/src/lib.rs index 4ff26e62..c902d099 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,8 @@ #![feature(unsafe_destructor)] #![warn(missing_docs)] -#![allow(unstable)] + +#![feature(core, collections, io, std_misc)] extern crate time; extern crate flate2;