Patch path for zcash_keys in Cargo.toml to avoid crate duplication in the crate tree

This commit is contained in:
Dmitry Demin 2024-10-02 12:52:16 +02:00
parent d2917fb75a
commit c979861c29
2 changed files with 3 additions and 28 deletions

View File

@ -5819,7 +5819,7 @@ dependencies = [
"which",
"zcash_address",
"zcash_encoding",
"zcash_keys 0.2.0 (git+https://github.com/QED-it/librustzcash?branch=txv6-separate-bundles-rebased-dd2)",
"zcash_keys",
"zcash_note_encryption",
"zcash_primitives",
"zcash_protocol",
@ -5846,32 +5846,6 @@ dependencies = [
"primitive-types",
]
[[package]]
name = "zcash_keys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "663489ffb4e51bc4436ff8796832612a9ff3c6516f1c620b5a840cb5dcd7b866"
dependencies = [
"bech32",
"blake2b_simd",
"bls12_381",
"bs58",
"document-features",
"group",
"memuse",
"nonempty",
"rand_core 0.6.4",
"sapling-crypto",
"secrecy",
"subtle",
"tracing",
"zcash_address",
"zcash_encoding",
"zcash_primitives",
"zcash_protocol",
"zip32",
]
[[package]]
name = "zcash_keys"
version = "0.2.0"
@ -6257,7 +6231,7 @@ dependencies = [
"tracing-subscriber",
"zcash_address",
"zcash_client_backend",
"zcash_keys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"zcash_keys",
"zcash_note_encryption",
"zcash_primitives",
"zebra-chain",

View File

@ -114,3 +114,4 @@ zcash_address = { version = "0.3.2", git = "https://github.com/QED-it/librustzca
zcash_encoding = { version = "0.2.0", git = "https://github.com/QED-it/librustzcash", branch = "txv6-separate-bundles-rebased-dd2" }
zcash_history = { version = "0.4.0", git = "https://github.com/QED-it/librustzcash", branch = "txv6-separate-bundles-rebased-dd2" }
zcash_client_backend = { version = "0.12.1", git = "https://github.com/QED-it/librustzcash", branch = "txv6-separate-bundles-rebased-dd2" }
zcash_keys = { version = "0.2.0", git = "https://github.com/QED-it/librustzcash", branch = "txv6-separate-bundles-rebased-dd2" }