From da11be12594ae95552e8135619750e58219e8a7d Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Fri, 21 Nov 2014 09:49:36 +0100 Subject: [PATCH] Use crates.io instead of git repo for deps --- Cargo.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 17b415bb..8e89cc3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,9 @@ name = "zip" version = "0.0.1" authors = ["Mathijs van de Nes "] -[dependencies.flate2] -git = "https://github.com/alexcrichton/flate2-rs.git" - -[dependencies.time] -git = "http://github.com/rust-lang/time" +[dependencies] +flate2 = "*" +time = "*" [[bin]] name = "extract"