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,