[package]
edition = "2021"
name = "vote-commitment-tree"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Append-only Poseidon Merkle tree for Vote Authority Notes and Vote Commitments in the Zcash shielded-voting protocol."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/valargroup/zcash_voting"
[lib]
name = "vote_commitment_tree"
path = "src/lib.rs"
[[test]]
name = "client_server_integration"
path = "tests/client_server_integration.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.ff]
version = "0.13"
[dependencies.halo2_gadgets]
version = "0.4"
default-features = false
[dependencies.imt-tree]
version = "0.1"
[dependencies.incrementalmerkletree]
version = "0.8.1"
[dependencies.lazy_static]
version = "1"
[dependencies.libc]
version = "0.2"
[dependencies.pasta_curves]
version = "0.5"
[dependencies.shardtree]
version = "0.6"
[dev-dependencies.orchard]
version = "=0.13.1"
features = ["unstable-voting-circuits"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.voting-circuits]
version = "0.3.1"