forked from zingolabs/zingolib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 910 Bytes
/
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
[workspace]
members = [
"zingolib",
"zingocli",
"zingoconfig",
"zingo-memo",
"zingo-testutils"
]
resolver = "2"
[workspace.dependencies]
zcash_address = "0.3"
zcash_client_backend = { git = "https://github.com/zcash/librustzcash.git", branch = "release-lwsdk-2.0.0" }
zcash_encoding = "0.2"
zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.13.0-rc.1" }
zcash_proofs = { version = "0.13.0-rc.1" }
orchard = "0.6"
tonic-build = "0.7"
tempdir = "0.3"
portpicker = "0.1"
incrementalmerkletree = { version = "0.5" }
shardtree = "0.1"
build_utils = { path = "./build_utils" }
[profile.release]
debug = false
[profile.test]
opt-level = 3
debug = false
[patch.crates-io]
zcash_primitives = { git = "https://github.com/zcash/librustzcash.git", branch = "release-lwsdk-2.0.0" }
zcash_address = { git = "https://github.com/zcash/librustzcash.git", branch = "release-lwsdk-2.0.0" }