From ff7c1c4523a0e74355b047296277f7ff4f11fa87 Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 18 Jun 2021 19:32:21 +1000 Subject: [PATCH] Depend on a specific git commit for zcash_history (#2345) --- Cargo.lock | 2 +- zebra-chain/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index afb97897..9f6a5200 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4414,7 +4414,7 @@ dependencies = [ [[package]] name = "zcash_history" version = "0.2.0" -source = "git+https://github.com/zcash/librustzcash.git#0c3ed159985affa774e44d10172d4471d798a85a" +source = "git+https://github.com/zcash/librustzcash.git?rev=0c3ed159985affa774e44d10172d4471d798a85a#0c3ed159985affa774e44d10172d4471d798a85a" dependencies = [ "bigint", "blake2b_simd", diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index f9e8c24f..fe3047a0 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -44,7 +44,7 @@ sha2 = { version = "0.9.5", features=["compress"] } subtle = "2.4" thiserror = "1" x25519-dalek = { version = "1.1", features = ["serde"] } -zcash_history = { git = "https://github.com/zcash/librustzcash.git" } +zcash_history = { git = "https://github.com/zcash/librustzcash.git", rev = "0c3ed159985affa774e44d10172d4471d798a85a" } bigint = "4" proptest = { version = "0.10", optional = true }