From 518b40aabc00c1bb11ac105b05dd0117561a3ea5 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Tue, 24 Feb 2015 18:46:59 +0100 Subject: [PATCH] Do not use collections feature --- src/lib.rs | 2 +- src/writer.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 04841ed7..44618990 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ #![feature(unsafe_destructor)] #![warn(missing_docs)] -#![feature(core, collections, old_io, std_misc, io)] +#![feature(core, old_io, std_misc, io)] extern crate time; extern crate flate2; diff --git a/src/writer.rs b/src/writer.rs index 03e265bd..ed053d3e 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -128,7 +128,7 @@ impl ZipWriter crc32: 0, compressed_size: 0, uncompressed_size: 0, - file_name: String::from_str(name), + file_name: name.to_string(), file_comment: String::new(), header_start: header_start, data_start: 0,