-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
80 lines (70 loc) · 2.31 KB
/
Cargo.toml
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
# Workspace Members are in dependency order, do not change this without prior consideration.
[workspace]
members = [
"integration-tests",
"zaino-testutils",
"zainod",
"zaino-serve",
"zaino-state",
"zaino-fetch",
"zaino-proto",
]
# Use the edition 2021 dependency resolver in the workspace, to match the crates
resolver = "2"
[workspace.package]
authors = ["Zingo Lab Cyan"]
repository = "https://github.com/zingolabs"
homepage = "https://www.zingolabs.org/"
edition = "2021"
license = "Apache-2.0"
version = "0.1.1"
[workspace.dependencies]
# Zingolabs
zingolib = { git = "https://github.com/zingolabs/zingolib.git", tag = "zaino_dep_004", features = [ "test-elevation" ] }
# Librustzcash
zcash_client_backend = { git = "https://github.com/zingolabs/librustzcash.git", tag = "zcash_client_sqlite-0.12.1_plus_zingolabs_changes-test_2", features = [ "lightwalletd-tonic" ] }
zcash_protocol = { git = "https://github.com/zingolabs/librustzcash.git", tag = "zcash_client_sqlite-0.12.1_plus_zingolabs_changes-test_2" }
# Zebra
# This should be changed to a specific release tag once Zebra regtest stabalizes, currently main is used to fetch most recent bug fixes from Zebra.
zebra-chain = { git = "https://github.com/ZcashFoundation/zebra.git", branch = "main" }
zebra-state = { git = "https://github.com/ZcashFoundation/zebra.git", branch = "main" }
zebra-rpc = { git = "https://github.com/ZcashFoundation/zebra.git", branch = "main" }
# Zcash-Local-Net
zcash_local_net = { git = "https://github.com/zingolabs/zcash-local-net.git", rev = "d64b76cab748455c5b9e1e4412f1689fb66f7d41", features = [ "test_fixtures" ] }
# Miscellaneous
tokio = { version = "1.38", features = ["full"] }
tonic = "0.12"
http = "1.1"
thiserror = "1.0"
async-stream = "0.3"
base64 = "0.22"
byteorder = "1.5"
clap = "4.0"
crossbeam-channel = "0.5"
ctrlc = "3.4"
futures = "0.3.30"
hex = "0.4.3"
indexmap = "2.2.6"
lazy-regex = "3.3"
once_cell = "1.20.2"
portpicker = "0.1"
prost = "0.13"
reqwest = "0.12"
serde = "1.0"
serde_json = "1.0"
sha2 = "0.10"
tempfile = "3.2"
tokio-stream = "0.1"
toml = "0.5"
tonic-build = "0.12"
tracing-subscriber = "0.3.15"
url = "2.5"
which = "4"
whoami = "1.5"
tower = { version = "0.4", features = ["buffer", "util"] }
async-trait = "0.1"
chrono = "0.4"
jsonrpc-core = "18.0"
jsonrpsee-types = "0.24"
dashmap = "6.1"
lmdb = "0.8"