forked from adityapk00/zecwallet-light-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (22 loc) · 1.34 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
[workspace]
members = [
"lib",
"cli",
]
[profile.release]
debug = false
[patch.crates-io]
zcash_address = { git = "https://github.com/zingolabs/zecwallet-librustzcash", branch = "zingo_recovering_tool"}
zcash_primitives = { git = "https://github.com/zingolabs/zecwallet-librustzcash", branch = "zingo_recovering_tool"}
zcash_client_backend = { git = "https://github.com/zingolabs/zecwallet-librustzcash", branch = "zingo_recovering_tool"}
zcash_note_encryption = { git = "https://github.com/zingolabs/zecwallet-librustzcash", branch = "zingo_recovering_tool"}
zcash_encoding = { git = "https://github.com/zingolabs/zecwallet-librustzcash", branch = "zingo_recovering_tool"}
zcash_proofs = { git = "https://github.com/zingolabs/zecwallet-librustzcash", branch = "zingo_recovering_tool"}
orchard = { git = "https://github.com/adityapk00/orchard", rev = "0a960a380f4e9c3472c9260f3df61cd5e50d51b0" }
#zcash_address = { path = "../librustzcash/components/zcash_address/" }
#zcash_primitives = { path = "../librustzcash/zcash_primitives/" }
#zcash_client_backend = { path = "../librustzcash/zcash_client_backend" }
#zcash_note_encryption = { path = "../librustzcash/components/zcash_note_encryption" }
#zcash_encoding = { path = "../librustzcash/components/zcash_encoding/" }
#zcash_proofs = { path = "../librustzcash/zcash_proofs/" }
#orchard = { path = "../orchard/" }