forked from Electric-Coin-Company/zcash-swift-wallet-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (42 loc) · 1.32 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
[package]
name = "libzcashlc"
version = "0.0.5"
authors = ["Jack Grigg <[email protected]>",
"Francisco Gindre <[email protected]>",
]
edition = "2018"
build = "rust/build.rs"
[dependencies]
failure = "0.1"
ffi_helpers = "0.2"
hex = "0.4"
zcash_client_backend = "0.4"
zcash_client_sqlite = "0.2.1"
zcash_primitives = "0.4"
#### Temporary additions: ####################################
base58 = "0.1.0"
sha2 = "0.9"
bs58 = { version = "0.3", features = ["check"] }
hdwallet = "0.2.2"
ripemd160 = "0.9"
secp256k1 = "0.17.2"
##############################################################
[dependencies.zcash_proofs]
version = "0.4"
default-features = false
features = ["local-prover"]
[build-dependencies]
cbindgen = "0.14"
[lib]
name = "zcashlc"
path = "rust/src/lib.rs"
crate-type = ["staticlib"]
[profile.release]
lto = true
[features]
mainnet = ["zcash_client_sqlite/mainnet"]
[patch.crates-io]
zcash_client_backend = { git = 'https://github.com/michaeltout/librustzcash.git', branch = 'mutable_chain_network' }
zcash_client_sqlite = { git = 'https://github.com/michaeltout/librustzcash', branch = 'mutable_chain_network' }
zcash_primitives = { git = 'https://github.com/michaeltout/librustzcash', branch = 'mutable_chain_network' }
zcash_proofs = { git = 'https://github.com/michaeltout/librustzcash', branch = 'mutable_chain_network' }