zcash-sync/Cargo.toml

110 lines
2.6 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-11-11 17:39:50 -08: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"
2022-05-19 09:19:04 -07:00
env_logger = "0.9.0"
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"
2022-05-19 09:19:04 -07:00
flexi_logger = {version="0.22.3", features = ["compress"]}
2021-06-17 09:56:20 -07:00
serde = {version = "1.0.126", features = ["derive"]}
serde_json = "1.0.64"
2021-09-08 07:10:22 -07:00
bincode = "1.3.3"
2021-06-17 09:56:20 -07:00
tokio = { version = "^1.6", features = ["macros", "rt-multi-thread"] }
2021-07-31 00:34:57 -07:00
tokio-stream = "0.1.7"
2022-05-19 09:19:04 -07:00
protobuf = "3.0.2"
2021-06-17 09:56:20 -07:00
hex = "0.4.3"
futures = "0.3.15"
2022-05-19 09:19:04 -07:00
tonic = {version = "0.7.2", features = ["tls", "tls-roots"]}
prost = "0.10.3"
2021-06-17 09:56:20 -07:00
rayon = "1.5.1"
2021-06-21 17:33:13 -07:00
tiny-bip39 = "0.8"
rand = "0.8.4"
2022-05-19 09:19:04 -07:00
rusqlite = { version = "0.27.0", features = ["bundled"] }
jubjub = "0.9.0"
bls12_381 = "0.7"
ff = "0.12"
group = "0.12.0"
2021-07-07 08:38:22 -07:00
byteorder = "^1.4"
2022-05-19 09:19:04 -07:00
secp256k1 = "0.21.3"
2021-07-09 06:33:05 -07:00
tiny-hderive = "0.3.0"
2022-05-19 09:19:04 -07:00
ripemd = "0.1.1"
sha2 = "0.10.2"
2021-07-11 08:42:52 -07:00
lazy_static = "1.4.0"
2022-05-19 09:19:04 -07:00
rustyline = "9.1.2"
clap = "3.1.18"
2021-08-09 07:13:10 -07:00
chrono = "0.4.19"
2021-09-21 18:08:27 -07:00
lazycell = "1.3.0"
2021-08-09 07:13:10 -07:00
reqwest = { version = "0.11.4", features = ["json", "rustls-tls"], default-features = false }
2021-06-24 05:08:20 -07:00
2021-11-11 17:39:50 -08:00
bech32 = "0.8.1"
rand_chacha = "0.3.1"
2022-05-19 09:19:04 -07:00
blake2b_simd = "1.0.0"
2022-02-28 07:35:29 -08:00
chacha20poly1305 = "0.9.0"
base64 = "^0.13"
2021-11-11 17:39:50 -08:00
2022-05-19 09:19:04 -07:00
ledger-apdu = { version = "0.9.0", optional = true }
2022-03-30 17:40:02 -07:00
hmac = { version = "0.12.1", optional = true }
ed25519-bip32 = { version = "0.4.1", optional = true }
[features]
ledger = ["ledger-apdu", "hmac", "ed25519-bip32"]
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"
2022-05-19 09:19:04 -07:00
rev = "466806932d21597eb4f89a449347fa1983dffb22"
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"
2022-05-19 09:19:04 -07:00
rev = "466806932d21597eb4f89a449347fa1983dffb22"
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"
2022-05-19 09:19:04 -07:00
rev = "466806932d21597eb4f89a449347fa1983dffb22"
2021-06-24 05:08:20 -07:00
[dependencies.zcash_params]
path = "../zcash-params"
2021-06-17 09:56:20 -07:00
2021-08-27 01:03:45 -07:00
[dependencies.zcash_address]
git = "https://github.com/hhanh00/librustzcash.git"
2022-05-19 09:19:04 -07:00
rev = "466806932d21597eb4f89a449347fa1983dffb22"
2022-03-14 19:40:08 -07:00
[dependencies.zcash_encoding]
git = "https://github.com/hhanh00/librustzcash.git"
2022-05-19 09:19:04 -07:00
rev = "466806932d21597eb4f89a449347fa1983dffb22"
2022-03-14 19:40:08 -07:00
[dependencies.zcash_note_encryption]
git = "https://github.com/hhanh00/librustzcash.git"
2022-05-19 09:19:04 -07:00
rev = "466806932d21597eb4f89a449347fa1983dffb22"
2021-08-27 01:03:45 -07:00
2021-06-17 09:56:20 -07:00
[build-dependencies]
2022-05-19 09:19:04 -07:00
tonic-build = "0.7.2"
2021-06-18 01:17:41 -07:00
[dev-dependencies]
criterion = "0.3.4"