[package] name = "zebra-utils" version = "1.0.0-beta.25" authors = ["Zcash Foundation "] description = "Developer tools for Zebra maintenance and testing" license = "MIT OR Apache-2.0" repository = "https://github.com/ZcashFoundation/zebra" edition = "2021" # zebra-utils has a separate README file readme = "README.md" homepage = "https://zfnd.org/zebra/" # crates.io is limited to 5 keywords and categories keywords = ["zebra", "zcash"] # Must be one of categories = ["command-line-utilities", "cryptography::cryptocurrencies"] [[bin]] name = "zebra-checkpoints" # this setting is required for Zebra's Docker build caches path = "src/bin/zebra-checkpoints/main.rs" required-features = ["zebra-checkpoints"] [[bin]] name = "search-issue-refs" path = "src/bin/search-issue-refs/main.rs" required-features = ["search-issue-refs"] [[bin]] name = "block-template-to-proposal" # this setting is required for Zebra's Docker build caches path = "src/bin/block-template-to-proposal/main.rs" required-features = ["getblocktemplate-rpcs"] [features] default = [] # Each binary has a feature that activates the extra dependencies it needs zebra-checkpoints = [ "itertools", "tokio", "zebra-chain/json-conversion", "zebra-node-services/rpc-client" ] search-issue-refs = [ "regex", "reqwest", "tokio" ] # block-template-to-proposal uses the experimental mining RPC support feature name getblocktemplate-rpcs = [ "zebra-rpc/getblocktemplate-rpcs", "zebra-node-services/getblocktemplate-rpcs", "zebra-chain/getblocktemplate-rpcs", ] [dependencies] color-eyre = "0.6.2" # This is a transitive dependency via color-eyre. # Enable a feature that makes tinyvec compile much faster. tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } structopt = "0.3.26" hex = "0.4.3" serde_json = "1.0.96" tracing-error = "0.2.0" tracing-subscriber = "0.3.17" thiserror = "1.0.40" zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.25" } zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.25" } # These crates are needed for the block-template-to-proposal binary zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.25", optional = true } # These crates are needed for the zebra-checkpoints binary itertools = { version = "0.10.5", optional = true } # These crates are needed for the search-issue-refs binary regex = { version = "1.8.4", optional = true } reqwest = { version = "0.11.18", optional = true } # These crates are needed for the zebra-checkpoints and search-issue-refs binaries tokio = { version = "1.28.2", features = ["full"], optional = true }