zcash_client_backend: Fix broken --all-features build.

This commit is contained in:
Kris Nuttycombe 2024-09-04 15:38:41 -06:00
parent db065805e1
commit 026f5f6de6
2 changed files with 9 additions and 1 deletions

View File

@ -214,6 +214,14 @@ unstable-serialization = ["dep:byteorder"]
## Exposes the [`data_api::scanning::spanning_tree`] module.
unstable-spanning-tree = []
## Exposes access to the lightwalletd server via TOR
tor-lightwalletd-tonic = [
"tor",
"lightwalletd-tonic",
"tonic?/tls",
"tonic?/tls-webpki-roots"
]
[lib]
bench = false

View File

@ -6,7 +6,7 @@ use arti_client::{config::TorClientConfigBuilder, TorClient};
use tor_rtcompat::PreferredRuntime;
use tracing::debug;
#[cfg(feature = "lightwalletd-tonic")]
#[cfg(feature = "tor-lightwalletd-tonic")]
mod grpc;
pub mod http;