forked from zingolabs/zaino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (60 loc) · 1.83 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
# 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_002_091024_95e5b0d8f9d5ee0485c6141533da2f727aeafae2", features = ["zaino-test"] }
# Librustzcash
zcash_protocol = { git = "https://github.com/zingolabs/librustzcash.git", tag = "zcash_client_sqlite-0.11.2_plus_zingolabs_changes-1-g7ad60b5d5-2-g121371a08" }
# Zebra
zebra-chain = { git = "https://github.com/ZcashFoundation/zebra.git", rev = "4eb285de50848f1a4dcebd0fbe353e4f150fd371" }
zebra-rpc = { git = "https://github.com/ZcashFoundation/zebra.git", rev = "4eb285de50848f1a4dcebd0fbe353e4f150fd371" }
# Zcash-Local-Net
zcash_local_net = { git = "https://github.com/zingolabs/zcash-local-net.git", branch = "dev", 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"