From 6e3a54d1fee637c59e86b06ee5af67ab01039338 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 22 Nov 2014 14:16:38 -0800 Subject: [PATCH] Use repository packages --- phf/Cargo.toml | 4 ++-- phf_mac/Cargo.toml | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 47323401..56beee49 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -10,8 +10,8 @@ name = "phf" path = "src/lib.rs" test = false -[dependencies.xxhash] -git = "https://github.com/Jurily/rust-xxhash" +[dependencies] +xxhash = "*" [dev_dependencies.phf_mac] path = "../phf_mac" diff --git a/phf_mac/Cargo.toml b/phf_mac/Cargo.toml index 73196f99..f3c18571 100644 --- a/phf_mac/Cargo.toml +++ b/phf_mac/Cargo.toml @@ -13,7 +13,6 @@ path = "src/lib.rs" plugin = true test = false -[dependencies.xxhash] -git = "https://github.com/Jurily/rust-xxhash" -[dependencies.time] -git = "https://github.com/rust-lang/time" +[dependencies] +xxhash = "*" +time = "*"