From 22580a768d181b67187c021e6613e33ba2fdcd23 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Sat, 13 Dec 2014 14:11:52 +0100 Subject: [PATCH] Implement copy where needed --- Cargo.toml | 12 ++++++++---- src/compression.rs | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 84cc500b..b6f818b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,10 +9,14 @@ description = """ Library to support the reading and writing of zip files. """ -[dependencies] -flate2 = "*" -bzip2 = "*" -time = "*" +[dependencies.flate2] +git = "https://github.com/alexcrichton/flate2-rs" + +[dependencies.bzip2] +git = "https://github.com/alexcrichton/bzip2-rs" + +[dependencies.time] +git = "https://github.com/rust-lang/time.git" [[bin]] name = "extract" diff --git a/src/compression.rs b/src/compression.rs index ff04df20..7563481a 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -1,7 +1,7 @@ //! Possible ZIP compression methods. /// Compression methods for the contents of a ZIP file. -#[deriving(FromPrimitive, Clone)] +#[deriving(FromPrimitive, Clone, Copy)] pub enum CompressionMethod { /// The file is stored (no compression)