Depend on a specific git commit for zcash_history (#2345)

This commit is contained in:
teor 2021-06-18 19:32:21 +10:00 committed by GitHub
parent 544d182d25
commit ff7c1c4523
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -4414,7 +4414,7 @@ dependencies = [
[[package]] [[package]]
name = "zcash_history" name = "zcash_history"
version = "0.2.0" 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 = [ dependencies = [
"bigint", "bigint",
"blake2b_simd", "blake2b_simd",

View File

@ -44,7 +44,7 @@ sha2 = { version = "0.9.5", features=["compress"] }
subtle = "2.4" subtle = "2.4"
thiserror = "1" thiserror = "1"
x25519-dalek = { version = "1.1", features = ["serde"] } 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" bigint = "4"
proptest = { version = "0.10", optional = true } proptest = { version = "0.10", optional = true }