Fix `zcash_keys` feature flag enabling in `zcash_client_*` crates

This commit is contained in:
Jack Grigg 2024-01-16 22:47:35 +00:00
parent c8d4dacfc1
commit 05f9252cb0
3 changed files with 7 additions and 1 deletions

1
Cargo.lock generated
View File

@ -3076,6 +3076,7 @@ dependencies = [
"zcash_address",
"zcash_client_backend",
"zcash_encoding",
"zcash_keys",
"zcash_note_encryption",
"zcash_primitives",
"zcash_proofs",

View File

@ -113,7 +113,11 @@ time = ">=0.3.22, <0.3.24" # time 0.3.24 has MSRV 1.67
lightwalletd-tonic = ["dep:tonic"]
## Enables receiving transparent funds and shielding them.
transparent-inputs = ["dep:hdwallet", "zcash_primitives/transparent-inputs"]
transparent-inputs = [
"dep:hdwallet",
"zcash_keys/transparent-inputs",
"zcash_primitives/transparent-inputs",
]
## Enables receiving and spending Orchard funds.
orchard = ["dep:orchard"]

View File

@ -70,6 +70,7 @@ proptest.workspace = true
rand_core.workspace = true
regex = "1.4"
tempfile = "3.5.0"
zcash_keys = { workspace = true, features = ["test-dependencies"] }
zcash_note_encryption.workspace = true
zcash_proofs = { workspace = true, features = ["bundled-prover"] }
zcash_primitives = { workspace = true, features = ["test-dependencies"] }