Hide unstable `orchard` feature flag in rustdoc

It is not part of the public API for `zcash_client_backend 0.11.0` and
`zcash_client_sqlite 0.9.0`.
This commit is contained in:
Jack Grigg 2024-03-01 01:10:26 +00:00
parent af303e810a
commit 6161709441
2 changed files with 3 additions and 7 deletions

View File

@ -110,6 +110,8 @@ zcash_keys = { workspace = true, features = ["test-dependencies"] }
time = ">=0.3.22, <0.3.24" # time 0.3.24 has MSRV 1.67
[features]
orchard = ["dep:orchard", "zcash_keys/orchard"]
## Enables the `tonic` gRPC client bindings for connecting to a `lightwalletd` server.
lightwalletd-tonic = ["dep:tonic"]
@ -120,9 +122,6 @@ transparent-inputs = [
"zcash_primitives/transparent-inputs",
]
## Enables receiving and spending Orchard funds.
orchard = ["dep:orchard", "zcash_keys/orchard"]
## Exposes APIs that are useful for testing, such as `proptest` strategies.
test-dependencies = [
"dep:proptest",

View File

@ -84,14 +84,11 @@ zcash_address = { workspace = true, features = ["test-dependencies"] }
[features]
default = ["multicore"]
orchard = ["dep:orchard", "zcash_client_backend/orchard", "zcash_keys/orchard"]
## Enables multithreading support for creating proofs and building subtrees.
multicore = ["maybe-rayon/threads", "zcash_primitives/multicore"]
## Enables support for storing data related to the sending and receiving of
## Orchard funds.
orchard = ["dep:orchard", "zcash_client_backend/orchard", "zcash_keys/orchard"]
## Exposes APIs that are useful for testing, such as `proptest` strategies.
test-dependencies = [
"incrementalmerkletree/test-dependencies",