zcash-sync/Cargo.toml

66 lines
1.5 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"
2021-06-26 02:52:03 -07:00
thiserror = "1.0.25"
2021-06-17 09:56:20 -07:00
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"
hex = "0.4.3"
futures = "0.3.15"
tonic = {version = "0.4.3", features = ["tls", "tls-roots"]}
prost = "0.7"
rayon = "1.5.1"
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"] }
2021-07-07 08:38:22 -07:00
jubjub = "^0.6"
bls12_381 = "^0.4.0"
ff = "^0.9"
group = "^0.9"
byteorder = "^1.4"
2021-07-09 06:33:05 -07:00
secp256k1 = "0.20.2"
tiny-hderive = "0.3.0"
ripemd160 = "0.9.1"
sha2 = "0.9.5"
2021-06-24 05:08:20 -07:00
2021-07-07 08:38:22 -07:00
# librustzcash synced to 35023ed8ca2fb1061e78fd740b640d4eefcc5edd
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-07-09 06:33:05 -07:00
features = [ "transparent-inputs" ]
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"