From 05f9252cb0bc906946bde930ada6189372ee31c5 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 16 Jan 2024 22:47:35 +0000 Subject: [PATCH] Fix `zcash_keys` feature flag enabling in `zcash_client_*` crates --- Cargo.lock | 1 + zcash_client_backend/Cargo.toml | 6 +++++- zcash_client_sqlite/Cargo.toml | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index a5610310a..6fd63a1b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3076,6 +3076,7 @@ dependencies = [ "zcash_address", "zcash_client_backend", "zcash_encoding", + "zcash_keys", "zcash_note_encryption", "zcash_primitives", "zcash_proofs", diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index 787bc75fc..ff86acffc 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -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"] diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 95ea752df..54db9a236 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -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"] }