-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (75 loc) · 1.81 KB
/
Cargo.toml
File metadata and controls
89 lines (75 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[workspace]
members = [
"crates/cli",
"crates/core",
"crates/types",
"crates/web",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/your-org/zev-toolkit"
authors = ["Zev Toolkit Contributors"]
description = "Developer toolkit for Zcash - making privacy development accessible"
[workspace.dependencies]
# CLI & Terminal
clap = { version = "4.5", features = ["derive", "cargo"] }
dialoguer = "0.11"
indicatif = "0.17"
crossterm = "0.28"
ratatui = "0.29"
# Async Runtime
tokio = { version = "1.43", features = ["full"] }
futures = "0.3"
# Zcash Libraries (using compatible versions)
zcash_primitives = "0.19"
orchard = "0.10"
sapling-crypto = "0.3"
zcash_address = "0.6"
zip32 = "0.1"
bech32 = "0.9"
jubjub = "0.10"
group = "0.13"
# Zebra (for easier transaction parsing)
zebra-chain = "3.0"
# RPC & Networking
jsonrpc = "0.18"
tonic = "0.12"
reqwest = { version = "0.12", features = ["json"] }
# Web Server
axum = "0.7"
tower = "0.5"
tower-http = { version = "0.5", features = ["cors", "trace"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Error Handling & Logging
anyhow = "1.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utils
hex = "0.4"
bs58 = "0.5"
chrono = "0.4"
uuid = { version = "1.11", features = ["v4", "serde"] }
# Cryptography
sha2 = "0.10"
ripemd = "0.1"
secp256k1 = { version = "0.29", features = ["recovery", "rand"] }
# Key Derivation
bip39 = "2.1"
hdpath = "0.6"
rand = "0.8"
# Internal crates
zev-cli = { path = "crates/cli" }
zev-core = { path = "crates/core" }
zev-types = { path = "crates/types" }
zev-web = { path = "crates/web" }
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1