zcash-sync/Cargo.toml

82 lines
1.8 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-07-23 05:58:00 -07:00
[[bin]]
name = "cli"
path = "src/main/cli.rs"
2021-08-05 06:38:48 -07:00
[[bin]]
name = "sign"
path = "src/main/sign.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"] }
2021-07-31 00:34:57 -07:00
tokio-stream = "0.1.7"
2021-06-17 09:56:20 -07:00
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"
2021-07-16 01:42:29 -07:00
group = "0.9.0"
2021-07-07 08:38:22 -07:00
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-07-11 08:42:52 -07:00
lazy_static = "1.4.0"
2021-07-23 05:58:00 -07:00
rustyline = "8.2.0"
clap = "3.0.0-beta.2"
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-07-22 19:01:19 -07:00
git = "https://github.com/hhanh00/librustzcash.git"
branch = "warp-sync"
2021-06-17 09:56:20 -07:00
[dependencies.zcash_primitives]
2021-07-22 19:01:19 -07:00
git = "https://github.com/hhanh00/librustzcash.git"
branch = "warp-sync"
2021-07-09 06:33:05 -07:00
features = [ "transparent-inputs" ]
2021-06-17 09:56:20 -07:00
[dependencies.zcash_proofs]
2021-07-22 19:01:19 -07:00
git = "https://github.com/hhanh00/librustzcash.git"
branch = "warp-sync"
2021-06-24 05:08:20 -07:00
[dependencies.zcash_params]
2021-07-22 19:01:19 -07:00
git = "https://github.com/hhanh00/zcash-params.git"
branch = "main"
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"