[package]
edition = "2021"
name = "pir-client"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Private Information Retrieval client for Zcash nullifier non-membership proofs. Fetches circuit-ready Merkle authentication paths without revealing the queried nullifier to the server."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/valargroup/vote-nullifier-pir"
[lib]
name = "pir_client"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.ff]
version = "0.13"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.imt-tree]
version = "0.2.0"
[dependencies.log]
version = "0.4"
[dependencies.pasta_curves]
version = "0.5"
[dependencies.pir-types]
version = "0.2.0"
features = ["reader"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dependencies.ypir]
version = "0.1.4"
default-features = false
package = "valar-ypir"
[dev-dependencies.rand]
version = "0.8"