zcash-devtool/Cargo.toml

33 lines
1.2 KiB
TOML
Raw Normal View History

2020-10-30 17:00:00 -07:00
[package]
name = "zec-sqlite-cli"
version = "0.1.0"
edition = "2021"
2023-07-04 19:26:32 -07:00
rust-version = "1.60"
2023-07-04 19:20:57 -07:00
license = "MIT OR Apache-2.0"
2020-10-30 17:00:00 -07:00
publish = false
[dependencies]
anyhow = "1"
futures-util = "0.3"
gumdrop = "0.8"
prost = "0.12"
2023-07-10 05:36:44 -07:00
rayon = "1.7"
rusqlite = { version = "0.29", features = ["time"] }
schemer = "0.2"
secrecy = "0.8"
time = "0.2"
tokio = { version = "1.21.0", features = ["fs", "macros", "rt-multi-thread"] }
tonic = { version = "0.10", features = ["gzip", "tls-webpki-roots"] }
2023-07-05 17:23:44 -07:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
zcash_client_backend = { version = "0.10", features = ["lightwalletd-tonic"] }
zcash_client_sqlite = { version = "0.8", features = ["unstable"] }
zcash_primitives = "0.13"
zcash_proofs = "0.13"
[patch.crates-io]
zcash_primitives = { git = "https://github.com/zcash/librustzcash.git", rev = "236cd569ee4a824d98920d1a61b8cc2b90ceba1d" }
zcash_proofs = { git = "https://github.com/zcash/librustzcash.git", rev = "236cd569ee4a824d98920d1a61b8cc2b90ceba1d" }
zcash_client_backend = { git = "https://github.com/zcash/librustzcash.git", rev = "236cd569ee4a824d98920d1a61b8cc2b90ceba1d" }
zcash_client_sqlite = { git = "https://github.com/zcash/librustzcash.git", rev = "236cd569ee4a824d98920d1a61b8cc2b90ceba1d" }