From 06fff62561dbd1f560ad64eef3229f9ca0ac16c9 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Thu, 9 Jul 2020 17:01:43 -0700 Subject: [PATCH] remove git dependency on equihash crate --- Cargo.lock | 6 +++--- zebra-chain/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a35a8e51..6f5bdb0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -464,12 +464,12 @@ dependencies = [ [[package]] name = "equihash" -version = "0.0.0" -source = "git+https://github.com/ZcashFoundation/librustzcash.git?branch=equihash-crate#ae2a2481333f27b5cdb5eb53b0754fb5901b7e5f" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4127688f6177e3f57521881cb1cfd90d1228214f9dc43b8efe6f6c6948cd8280" dependencies = [ "blake2b_simd", "byteorder", - "log", ] [[package]] diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 337e2598..b11d65ef 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -29,7 +29,7 @@ serde-big-array = "0.3.0" # ZF deps ed25519-zebra = "1.0" redjubjub = "0.2" -equihash = { git = "https://github.com/ZcashFoundation/librustzcash.git", branch = "equihash-crate" } +equihash = "0.1" displaydoc = "0.1.6" [dev-dependencies]