Cargo Features

[dependencies]
zcash_transparent = { version = "0.1.0", default-features = false, features = ["std", "transparent-inputs", "test-dependencies"] }
default = std

The std feature is set by default whenever zcash_transparent is added without default-features = false somewhere in the dependency tree.

std default

Enables document-features

- Documentation

transparent-inputs

Enables spending transparent notes with the transaction builder.

Enables secp256k1 ^0.27

  • SecretKey and PublicKey types exposed

and secp256k1-ffi of bip32

  • Transparent inputs
    • Error type exposed

Affects builder::TransparentInputInfo, zcash_transparent::keys

test-dependencies

Exposes APIs that are useful for testing, such as proptest strategies.

Enables test-dependencies of zcash_protocol and proptest

- Test dependencies