Update features and deprecated items

This commit is contained in:
Mathijs van de Nes 2015-03-08 11:25:25 +01:00
parent 8ee78c5314
commit 785dccbf8e
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#![feature(path, io, fs, exit_status)]
#![feature(path, io, exit_status)]
extern crate zip;

View file

@ -1,4 +1,4 @@
#![feature(path, io, fs, exit_status)]
#![feature(path, io, exit_status)]
use std::io::prelude::*;

View file

@ -1,4 +1,4 @@
#![feature(io, fs, path, exit_status)]
#![feature(io, path, exit_status)]
use std::io::prelude::*;

View file

@ -26,7 +26,7 @@ pub enum ZipError
impl ZipError
{
fn detail(&self) -> ::std::string::CowString
fn detail(&self) -> ::std::borrow::Cow<str>
{
use ::std::error::Error;
use ::std::borrow::IntoCow;