zcash-sync/Cargo.toml

71 lines
1.7 KiB
TOML
Raw Normal View History

2021-06-17 09:56:20 -07:00
[package]
name = "sync"
version = "0.1.0"
authors = ["Hanh <hanh425@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-06-18 01:17:41 -07:00
[[bench]]
name = "scan_all"
harness = false
2021-06-21 17:33:13 -07:00
[[bin]]
name = "warp-cli"
path = "src/main/warp_cli.rs"
2021-06-17 09:56:20 -07:00
[dependencies]
dotenv = "0.15.0"
2021-06-18 01:17:41 -07:00
env_logger = "0.8.4"
2021-06-17 09:56:20 -07:00
anyhow = "1.0.40"
log = "0.4.14"
flexi_logger = {version="0.17.1", features = ["compress"]}
serde = {version = "1.0.126", features = ["derive"]}
serde_json = "1.0.64"
tokio = { version = "^1.6", features = ["macros", "rt-multi-thread"] }
protobuf = "2.23.0"
jubjub = "0.6"
bls12_381 = "0.4.0"
ff = "0.9"
group = "0.9"
hex = "0.4.3"
bytes = "1.0.1"
futures = "0.3.15"
tonic = {version = "0.4.3", features = ["tls", "tls-roots"]}
prost = "0.7"
rayon = "1.5.1"
2021-06-18 01:17:41 -07:00
byteorder = "1.4.3"
2021-06-21 17:33:13 -07:00
tiny-bip39 = "0.8"
rand = "0.8.4"
2021-06-24 05:08:20 -07:00
rusqlite = { version = "^0.24", features = ["bundled"] }
#[dependencies.zcash_client_backend]
#git = "https://github.com/zcash/librustzcash.git"
#rev = "d50bb12a97da768dc8f3ee39b81f84262103e6eb"
#
#[dependencies.zcash_primitives]
#git = "https://github.com/zcash/librustzcash.git"
#rev = "d50bb12a97da768dc8f3ee39b81f84262103e6eb"
#
#[dependencies.zcash_proofs]
#git = "https://github.com/zcash/librustzcash.git"
#rev = "d50bb12a97da768dc8f3ee39b81f84262103e6eb"
2021-06-17 09:56:20 -07:00
[dependencies.zcash_client_backend]
2021-06-24 05:08:20 -07:00
path = "/home/hanh/projects/librustzcash/zcash_client_backend"
2021-06-17 09:56:20 -07:00
[dependencies.zcash_primitives]
2021-06-24 05:08:20 -07:00
path = "/home/hanh/projects/librustzcash/zcash_primitives"
2021-06-17 09:56:20 -07:00
[dependencies.zcash_proofs]
2021-06-24 05:08:20 -07:00
path = "/home/hanh/projects/librustzcash/zcash_proofs"
[dependencies.zcash_params]
path = "../zcash_params"
2021-06-17 09:56:20 -07:00
[build-dependencies]
tonic-build = "0.4.2"
2021-06-18 01:17:41 -07:00
[dev-dependencies]
criterion = "0.3.4"