[#363] Fix librustzcash dependency source

This commit is contained in:
Carter Jernigan 2022-01-13 07:32:14 -05:00 committed by Carter Jernigan
parent 38fd51519b
commit 3b5d02b1a7
2 changed files with 12 additions and 10 deletions

14
sdk-lib/Cargo.lock generated
View File

@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
version = "0.14.1"
@ -497,7 +499,7 @@ dependencies = [
[[package]]
name = "equihash"
version = "0.1.0"
source = "git+https://github.com/gmale/librustzcash?branch=autoshield-poc-daa-taddr3#bd65b01eb3131f24baab54a7d8e0c05affbc621e"
source = "git+https://github.com/zcash/librustzcash?branch=autoshielding-poc-sdk-dnm#8e3e7de50c3c35bd7c18988bb629dd1baeb1a3d1"
dependencies = [
"blake2b_simd",
"byteorder",
@ -2005,7 +2007,7 @@ dependencies = [
[[package]]
name = "zcash_client_backend"
version = "0.5.0"
source = "git+https://github.com/gmale/librustzcash?branch=autoshield-poc-daa-taddr3#bd65b01eb3131f24baab54a7d8e0c05affbc621e"
source = "git+https://github.com/zcash/librustzcash?branch=autoshielding-poc-sdk-dnm#8e3e7de50c3c35bd7c18988bb629dd1baeb1a3d1"
dependencies = [
"base64 0.13.0",
"bech32",
@ -2034,7 +2036,7 @@ dependencies = [
[[package]]
name = "zcash_client_sqlite"
version = "0.3.0"
source = "git+https://github.com/gmale/librustzcash?branch=autoshield-poc-daa-taddr3#bd65b01eb3131f24baab54a7d8e0c05affbc621e"
source = "git+https://github.com/zcash/librustzcash?branch=autoshielding-poc-sdk-dnm#8e3e7de50c3c35bd7c18988bb629dd1baeb1a3d1"
dependencies = [
"bech32",
"bs58",
@ -2053,7 +2055,7 @@ dependencies = [
[[package]]
name = "zcash_note_encryption"
version = "0.0.0"
source = "git+https://github.com/gmale/librustzcash?branch=autoshield-poc-daa-taddr3#bd65b01eb3131f24baab54a7d8e0c05affbc621e"
source = "git+https://github.com/zcash/librustzcash?branch=autoshielding-poc-sdk-dnm#8e3e7de50c3c35bd7c18988bb629dd1baeb1a3d1"
dependencies = [
"blake2b_simd",
"byteorder",
@ -2067,7 +2069,7 @@ dependencies = [
[[package]]
name = "zcash_primitives"
version = "0.5.0"
source = "git+https://github.com/gmale/librustzcash?branch=autoshield-poc-daa-taddr3#bd65b01eb3131f24baab54a7d8e0c05affbc621e"
source = "git+https://github.com/zcash/librustzcash?branch=autoshielding-poc-sdk-dnm#8e3e7de50c3c35bd7c18988bb629dd1baeb1a3d1"
dependencies = [
"aes",
"bitvec 0.18.5",
@ -2097,7 +2099,7 @@ dependencies = [
[[package]]
name = "zcash_proofs"
version = "0.5.0"
source = "git+https://github.com/gmale/librustzcash?branch=autoshield-poc-daa-taddr3#bd65b01eb3131f24baab54a7d8e0c05affbc621e"
source = "git+https://github.com/zcash/librustzcash?branch=autoshielding-poc-sdk-dnm#8e3e7de50c3c35bd7c18988bb629dd1baeb1a3d1"
dependencies = [
"bellman",
"blake2b_simd",

View File

@ -59,10 +59,10 @@ protobuf-codegen-pure = "2.14"
# Uncomment this to test someone else's librustzcash changes in a branch
[patch.crates-io]
zcash_client_backend = {git = "https://github.com/gmale/librustzcash", branch = "autoshield-poc-daa-taddr3"}
zcash_client_sqlite = {git = "https://github.com/gmale/librustzcash", branch = "autoshield-poc-daa-taddr3"}
zcash_primitives = {git = "https://github.com/gmale/librustzcash", branch = "autoshield-poc-daa-taddr3"}
zcash_proofs = {git = "https://github.com/gmale/librustzcash", branch = "autoshield-poc-daa-taddr3"}
zcash_client_backend = {git = "https://github.com/zcash/librustzcash", branch = "autoshielding-poc-sdk-dnm"}
zcash_client_sqlite = {git = "https://github.com/zcash/librustzcash", branch = "autoshielding-poc-sdk-dnm"}
zcash_primitives = {git = "https://github.com/zcash/librustzcash", branch = "autoshielding-poc-sdk-dnm"}
zcash_proofs = {git = "https://github.com/zcash/librustzcash", branch = "autoshielding-poc-sdk-dnm"}
[features]
mainnet = ["zcash_client_sqlite/mainnet"]