From 814df34916d840e75ea540d8c2a51520dece8fe3 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Tue, 13 Jan 2015 10:40:31 +0100 Subject: [PATCH] Use crates.io packages again --- Cargo.toml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 15778725..44f4d88e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zip" -version = "0.0.5" +version = "0.0.6" authors = ["Mathijs van de Nes "] license = "MIT" repository = "https://github.com/mvdnes/zip-rs.git" @@ -9,17 +9,11 @@ description = """ Library to support the reading and writing of zip files. """ -[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" - -[dependencies.log] -git = "https://github.com/rust-lang/log.git" +[dependencies] +flate2 = "*" +bzip2 = "*" +time = "*" +log = "*" [[bin]] name = "extract"