zcash-devtool/Cargo.toml

71 lines
2.7 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"
2024-06-20 14:10:42 -07:00
rust-version = "1.70"
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"
2024-06-20 14:10:42 -07:00
bip0039 = { version = "0.12", features = ["std", "all-languages"] }
futures-util = "0.3"
gumdrop = "0.8"
prost = "0.13"
2023-07-10 05:36:44 -07:00
rayon = "1.7"
rusqlite = { version = "0.31", features = ["time"] }
schemerz = "0.2"
secrecy = "0.8"
serde = "1.0"
2024-09-10 16:04:20 -07:00
time = "0.3"
tokio = { version = "1.21.0", features = ["fs", "macros", "rt-multi-thread", "signal"] }
toml = "0.8"
tonic = { version = "0.12", 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"] }
orchard = { version = "0.10", default-features = false }
sapling = { package = "sapling-crypto", version = "0.3" }
zcash_address = "0.6"
zcash_client_backend = { version = "0.14", features = ["lightwalletd-tonic-tls-webpki-roots", "orchard", "tor"] }
zcash_client_sqlite = { version = "0.12", features = ["unstable", "orchard"] }
zcash_keys = { version = "0.4", features = ["unstable", "orchard"] }
zcash_primitives = "0.19"
zcash_proofs = "0.19"
zcash_protocol = "0.4"
zip321 = "0.2"
2024-04-20 07:55:38 -07:00
# Currency conversion
2024-09-10 16:00:13 -07:00
iso_currency = { version = "0.5", features = ["with-serde"] }
rust_decimal = "1"
2024-04-20 07:55:38 -07:00
# TUI
2024-09-10 15:58:04 -07:00
crossterm = { version = "0.28", optional = true, features = ["event-stream"] }
ratatui = { version = "0.28", optional = true }
roaring = { version = "0.10", optional = true }
2024-04-20 07:55:38 -07:00
tokio-util = { version = "0.7", optional = true }
2024-09-10 15:58:04 -07:00
tui-logger = { version = "0.12", optional = true, features = ["tracing-support"] }
2024-04-20 07:55:38 -07:00
[features]
default = ["transparent-inputs"]
transparent-inputs = [
"zcash_client_sqlite/transparent-inputs",
]
2024-04-20 07:55:38 -07:00
tui = [
"dep:crossterm",
"dep:ratatui",
"dep:roaring",
2024-04-20 07:55:38 -07:00
"dep:tokio-util",
"dep:tui-logger",
2024-04-20 07:55:38 -07:00
]
[patch.crates-io]
zcash_address = { git = "https://github.com/zcash/librustzcash", rev = "bf8b39ad43b54c2d333587c9870eac703b3ee84a" }
zip321 = { git = "https://github.com/zcash/librustzcash", rev = "bf8b39ad43b54c2d333587c9870eac703b3ee84a" }
zcash_keys = { git = "https://github.com/zcash/librustzcash", rev = "bf8b39ad43b54c2d333587c9870eac703b3ee84a" }
zcash_primitives = { git = "https://github.com/zcash/librustzcash", rev = "bf8b39ad43b54c2d333587c9870eac703b3ee84a" }
zcash_protocol = { git = "https://github.com/zcash/librustzcash", rev = "bf8b39ad43b54c2d333587c9870eac703b3ee84a" }
zcash_proofs = { git = "https://github.com/zcash/librustzcash", rev = "bf8b39ad43b54c2d333587c9870eac703b3ee84a" }
zcash_client_backend = { git = "https://github.com/zcash/librustzcash", rev = "bf8b39ad43b54c2d333587c9870eac703b3ee84a" }
zcash_client_sqlite = { git = "https://github.com/zcash/librustzcash", rev = "bf8b39ad43b54c2d333587c9870eac703b3ee84a" }