[package]
edition = "2021"
name = "vote-commitment-tree-client"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP client and CLI for syncing and verifying the vote commitment tree against a running Zcash shielded-voting chain node."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/valargroup/zcash_voting"
[lib]
name = "vote_commitment_tree_client"
path = "src/lib.rs"
[[bin]]
name = "vote-tree-cli"
path = "src/main.rs"
[[test]]
name = "mock_server_tests"
path = "tests/mock_server_tests.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ff]
version = "0.13"
[dependencies.hex]
version = "0.4"
[dependencies.pasta_curves]
version = "0.5"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.vote-commitment-tree]
version = "0.1.1"
[dev-dependencies.mockito]
version = "1"