@@ -18,9 +18,6 @@ path = "examples/simple-sync.rs"
18
18
name = " message-board-sync"
19
19
path = " examples/message-board-sync.rs"
20
20
21
- [[example ]]
22
- name = " batchrunner"
23
- path = " examples/batchrunner.rs"
24
21
25
22
[profile .release ]
26
23
# Tell `rustc` to optimize for small code size.
@@ -39,6 +36,8 @@ native = ["dep:tokio", "tonic/channel", "tonic/gzip", "tonic/tls-webpki-roots"]
39
36
sqlite-db = [" dep:zcash_client_sqlite" ]
40
37
console_error_panic_hook = [" dep:console_error_panic_hook" ]
41
38
39
+ sync2 = []
40
+
42
41
[dependencies ]
43
42
# # Web dependencies
44
43
wasm-bindgen = " 0.2.84"
@@ -52,12 +51,12 @@ console_error_panic_hook = { version = "0.1.7", optional = true }
52
51
tonic-web-wasm-client = " 0.6.0"
53
52
54
53
# # Zcash dependencies
55
- zcash_keys = { git = " https://github.com/ChainSafe/librustzcash" , rev = " c97a3f6e60446523fafa63cdf77b6c2584ac9f3b " , features = [" transparent-inputs" , " orchard" , " sapling" , " unstable" ] }
56
- zcash_client_backend = { git = " https://github.com/ChainSafe/librustzcash" , rev = " c97a3f6e60446523fafa63cdf77b6c2584ac9f3b " , default-features = false , features = [" sync" , " lightwalletd-tonic" , " wasm-bindgen" ] }
57
- zcash_client_memory = { git = " https://github.com/ChainSafe/librustzcash" , rev = " c97a3f6e60446523fafa63cdf77b6c2584ac9f3b " , features = [" orchard" ] }
58
- zcash_primitives = { git = " https://github.com/ChainSafe/librustzcash" , rev = " c97a3f6e60446523fafa63cdf77b6c2584ac9f3b " }
59
- zcash_address = { git = " https://github.com/ChainSafe/librustzcash" , rev = " c97a3f6e60446523fafa63cdf77b6c2584ac9f3b " }
60
- zcash_proofs = { git = " https://github.com/ChainSafe/librustzcash" , rev = " c97a3f6e60446523fafa63cdf77b6c2584ac9f3b " , default-features = false , features = [" bundled-prover" ] }
54
+ zcash_keys = { git = " https://github.com/ChainSafe/librustzcash" , rev = " 0fdd2fbb992a6f84eba45f488ee74a75d08d449b " , features = [" transparent-inputs" , " orchard" , " sapling" , " unstable" ] }
55
+ zcash_client_backend = { git = " https://github.com/ChainSafe/librustzcash" , rev = " 0fdd2fbb992a6f84eba45f488ee74a75d08d449b " , default-features = false , features = [" sync" , " lightwalletd-tonic" , " wasm-bindgen" ] }
56
+ zcash_client_memory = { git = " https://github.com/ChainSafe/librustzcash" , rev = " 0fdd2fbb992a6f84eba45f488ee74a75d08d449b " , features = [" orchard" ] }
57
+ zcash_primitives = { git = " https://github.com/ChainSafe/librustzcash" , rev = " 0fdd2fbb992a6f84eba45f488ee74a75d08d449b " }
58
+ zcash_address = { git = " https://github.com/ChainSafe/librustzcash" , rev = " 0fdd2fbb992a6f84eba45f488ee74a75d08d449b " }
59
+ zcash_proofs = { git = " https://github.com/ChainSafe/librustzcash" , rev = " 0fdd2fbb992a6f84eba45f488ee74a75d08d449b " , default-features = false , features = [" bundled-prover" ] }
61
60
62
61
# # gRPC Web dependencies
63
62
prost = { version = " 0.12" , default-features = false }
@@ -67,7 +66,7 @@ tonic = { version = "0.12", default-features = false, features = [
67
66
68
67
# Used in Native tests
69
68
tokio = { version = " 1.0" , features = [" rt" , " macros" , " rt-multi-thread" ], optional = true }
70
- zcash_client_sqlite = { git = " https://github.com/ChainSafe/librustzcash" , rev = " c97a3f6e60446523fafa63cdf77b6c2584ac9f3b " , default-features = false , features = [" unstable" , " orchard" ], optional = true }
69
+ zcash_client_sqlite = { git = " https://github.com/ChainSafe/librustzcash" , rev = " 0fdd2fbb992a6f84eba45f488ee74a75d08d449b " , default-features = false , features = [" unstable" , " orchard" ], optional = true }
71
70
72
71
getrandom = { version = " 0.2" , features = [" js" ] }
73
72
thiserror = " 1.0.63"
@@ -93,12 +92,12 @@ zip32 = { git = "https://github.com/zcash/zip32.git", branch = "diversifier_inde
93
92
shardtree = { git = " https://github.com/ec2/incrementalmerkletree.git" , rev = " 16eff253ad2575d48feec04f7387e6507a7dd698" }
94
93
incrementalmerkletree = { git = " https://github.com/ec2/incrementalmerkletree.git" , rev = " 16eff253ad2575d48feec04f7387e6507a7dd698" }
95
94
96
- [patch .'https://github .com/chainsafe/librustzcash' ]
97
- zcash_address = { path = " ../librustzcash/components/zcash_address" }
98
- zcash_client_backend = { path = " ../librustzcash/zcash_client_backend" }
99
- # zcash_client_sqlite = { path = "../librustzcash/zcash_client_sqlite" }
100
- zcash_client_memory = { path = " ../librustzcash/zcash_client_memory" }
101
- zcash_keys = { path = " ../librustzcash/zcash_keys" }
102
- zcash_primitives = { path = " ../librustzcash/zcash_primitives" }
103
- zcash_proofs = { path = " ../librustzcash/zcash_proofs" }
104
- zcash_protocol = { path = " ../librustzcash/components/zcash_protocol" }
95
+ # [patch.'https://github.com/chainsafe/librustzcash']
96
+ # zcash_address = { path = "../librustzcash/components/zcash_address" }
97
+ # zcash_client_backend = { path = "../librustzcash/zcash_client_backend" }
98
+ # # zcash_client_sqlite = { path = "../librustzcash/zcash_client_sqlite" }
99
+ # zcash_client_memory = { path = "../librustzcash/zcash_client_memory" }
100
+ # zcash_keys = { path = "../librustzcash/zcash_keys" }
101
+ # zcash_primitives = { path = "../librustzcash/zcash_primitives" }
102
+ # zcash_proofs = { path = "../librustzcash/zcash_proofs" }
103
+ # zcash_protocol = { path = "../librustzcash/components/zcash_protocol" }
0 commit comments