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:
parent
af303e810a
commit
6161709441
|
@ -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
|
time = ">=0.3.22, <0.3.24" # time 0.3.24 has MSRV 1.67
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
orchard = ["dep:orchard", "zcash_keys/orchard"]
|
||||||
|
|
||||||
## Enables the `tonic` gRPC client bindings for connecting to a `lightwalletd` server.
|
## Enables the `tonic` gRPC client bindings for connecting to a `lightwalletd` server.
|
||||||
lightwalletd-tonic = ["dep:tonic"]
|
lightwalletd-tonic = ["dep:tonic"]
|
||||||
|
|
||||||
|
@ -120,9 +122,6 @@ transparent-inputs = [
|
||||||
"zcash_primitives/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.
|
## Exposes APIs that are useful for testing, such as `proptest` strategies.
|
||||||
test-dependencies = [
|
test-dependencies = [
|
||||||
"dep:proptest",
|
"dep:proptest",
|
||||||
|
|
|
@ -84,14 +84,11 @@ zcash_address = { workspace = true, features = ["test-dependencies"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["multicore"]
|
default = ["multicore"]
|
||||||
|
orchard = ["dep:orchard", "zcash_client_backend/orchard", "zcash_keys/orchard"]
|
||||||
|
|
||||||
## Enables multithreading support for creating proofs and building subtrees.
|
## Enables multithreading support for creating proofs and building subtrees.
|
||||||
multicore = ["maybe-rayon/threads", "zcash_primitives/multicore"]
|
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.
|
## Exposes APIs that are useful for testing, such as `proptest` strategies.
|
||||||
test-dependencies = [
|
test-dependencies = [
|
||||||
"incrementalmerkletree/test-dependencies",
|
"incrementalmerkletree/test-dependencies",
|
||||||
|
|
Loading…
Reference in New Issue