diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index bef853dbd..d67b28312 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -21,7 +21,16 @@ exclude = ["*.proto"] development = ["zcash_proofs"] [package.metadata.docs.rs] -all-features = true +# Manually specify features while `orchard` is not in the public API. +#all-features = true +features = [ + "lightwalletd-tonic", + "transparent-inputs", + "test-dependencies", + "unstable", + "unstable-serialization", + "unstable-spanning-tree", +] rustdoc-args = ["--cfg", "docsrs"] [dependencies] diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 6b3599c56..dda89a24b 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -15,7 +15,14 @@ rust-version.workspace = true categories.workspace = true [package.metadata.docs.rs] -all-features = true +# Manually specify features while `orchard` is not in the public API. +#all-features = true +features = [ + "multicore", + "test-dependencies", + "transparent-inputs", + "unstable", +] rustdoc-args = ["--cfg", "docsrs"] [dependencies]