zcash-devtool/Cargo.toml

114 lines
4.5 KiB
TOML
Raw Normal View History

2020-10-30 17:00:00 -07:00
[package]
2024-12-19 08:48:07 -08:00
name = "zcash-devtool"
2020-10-30 17:00:00 -07:00
version = "0.1.0"
edition = "2021"
rust-version = "1.81"
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"] }
2024-12-10 03:54:00 -08:00
bip32 = "0.5"
futures-util = "0.3"
hex = "0.4"
2024-12-10 03:54:00 -08:00
jubjub = "0.10"
prost = "0.13"
2023-07-10 05:36:44 -07:00
rayon = "1.7"
rusqlite = { version = "0.32", 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"] }
uuid = "1"
orchard = { version = "0.10", default-features = false }
pczt = "0.1"
sapling = { package = "sapling-crypto", version = "0.4" }
transparent = { package = "zcash_transparent", version = "0.1", features = ["test-dependencies"] }
zcash_address = "0.6"
zcash_client_backend = { version = "0.16", features = ["lightwalletd-tonic-tls-webpki-roots", "orchard", "pczt", "tor"] }
zcash_client_sqlite = { version = "0.14", features = ["unstable", "orchard", "serde"] }
zcash_keys = { version = "0.6", features = ["unstable", "orchard"] }
zcash_primitives = "0.21"
zcash_proofs = "0.21"
zcash_protocol = { version = "0.4", features = ["local-consensus"] }
zip32 = "0.1"
zip321 = "0.2"
2024-04-20 07:55:38 -07:00
2024-12-19 13:40:04 -08:00
# CLI
clap = { version = "4.5", features = ["derive", "string", "unstable-styles"] }
# Seed encryption
age = { version = "0.11", features = ["armor", "plugin"] }
chrono = "0.4"
# Currency conversion
2024-09-10 16:00:13 -07:00
iso_currency = { version = "0.5", features = ["with-serde"] }
rust_decimal = "1"
# Inspect
bech32 = "0.11"
bellman = "0.14"
blake2b_simd = "1"
ed25519-zebra = "4"
equihash = "0.2"
group = "0.13"
lazy_static = "1"
secp256k1 = "0.27"
serde_json = "1"
sha2 = "0.10"
uint = "0.9"
zcash_encoding = "0.2"
zcash_note_encryption = "0.4"
# PCZT QR codes
2024-12-11 20:45:09 -08:00
image = { version = "0.25", optional = true }
2024-12-11 16:28:24 -08:00
minicbor = { version = "0.19", optional = true }
nokhwa = { version = "0.10", optional = true, features = ["input-native"] }
qrcode = { version = "0.14", optional = true, default-features = false }
rqrr = { version = "0.8", optional = true }
ur = { version = "0.4", optional = true }
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"] }
2024-12-11 08:25:45 -08:00
ratatui = { version = "0.29", optional = true }
roaring = { version = "0.10", optional = true }
2024-04-20 07:55:38 -07:00
tokio-util = { version = "0.7", optional = true }
2024-12-11 08:25:45 -08:00
tui-logger = { version = "0.14", optional = true, features = ["tracing-support"] }
2024-04-20 07:55:38 -07:00
[features]
default = ["transparent-inputs"]
2024-12-11 20:45:09 -08:00
pczt-qr = ["dep:image", "dep:minicbor", "dep:nokhwa", "dep:qrcode", "dep:rqrr", "dep:ur"]
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]
equihash = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
orchard = { git = "https://github.com/zcash/orchard.git", rev = "4fa6d3b549f8803016a309281404eab095d04de8" }
2024-12-18 17:08:20 -08:00
pczt = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
sapling = { package = "sapling-crypto", git = "https://github.com/zcash/sapling-crypto.git", rev = "3c2235747553da642fb142d1eeb9b1afa8391987" }
2024-12-18 17:08:20 -08:00
transparent = { package = "zcash_transparent", git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
zcash_address = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
zcash_client_backend = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
zcash_client_sqlite = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
zcash_encoding = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
2024-12-18 17:08:20 -08:00
zcash_keys = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
zcash_primitives = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
zcash_proofs = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
zcash_protocol = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }
zip321 = { git = "https://github.com/zcash/librustzcash.git", rev = "9c6d1b958bd015f3fc3f8d5e5815b2bfc54e484b" }