ZcashLightClientKit/Cargo.toml

61 lines
1.9 KiB
TOML
Raw Normal View History

2019-05-06 06:46:00 -07:00
[package]
name = "libzcashlc"
version = "0.0.6"
authors = ["Jack Grigg <jack@z.cash>",
"Francisco Gindre <francisco@z.cash>",
]
2019-05-06 06:46:00 -07:00
edition = "2018"
build = "rust/build.rs"
[dependencies]
failure = "0.1"
2020-09-22 10:54:44 -07:00
ffi_helpers = "0.2"
hex = "0.4"
zcash_client_backend = "0.5"
zcash_client_sqlite = "0.3.0"
zcash_primitives = "0.5"
2021-02-17 15:02:25 -08:00
2020-10-09 13:58:36 -07:00
#### Temporary additions: ####################################
bitvec = "0.18"
2020-10-09 13:58:36 -07:00
base58 = "0.1.0"
sha2 = "0.9"
bs58 = { version = "0.3", features = ["check"] }
2021-02-17 15:02:25 -08:00
hdwallet = "0.3.0"
2020-10-09 13:58:36 -07:00
ripemd160 = "0.9"
2020-12-22 10:56:31 -08:00
secp256k1 = "0.19"
2020-12-22 06:37:11 -08:00
time = "0.2"
2021-02-17 15:02:25 -08:00
funty = "=1.1.0"
2020-10-09 13:58:36 -07:00
##############################################################
2019-05-08 06:10:11 -07:00
[dependencies.zcash_proofs]
version = "0.5"
default-features = false
features = ["local-prover"]
2019-05-08 06:10:11 -07:00
[build-dependencies]
2020-09-22 10:54:09 -07:00
cbindgen = "0.14"
2019-05-06 06:46:00 -07:00
[lib]
name = "zcashlc"
path = "rust/src/lib.rs"
crate-type = ["staticlib"]
[profile.release]
lto = true
2020-01-14 14:25:14 -08:00
[patch.crates-io]
zcash_client_backend = {git = "https://github.com/nuttycom/librustzcash", branch = "autoshield-poc-daa" }
zcash_client_sqlite = {git = "https://github.com/nuttycom/librustzcash", branch = "autoshield-poc-daa" }
zcash_primitives = {git = "https://github.com/nuttycom/librustzcash", branch = "autoshield-poc-daa" }
zcash_proofs = {git = "https://github.com/nuttycom/librustzcash", branch = "autoshield-poc-daa" }
#zcash_client_backend = { path = "/Users/pacu/Repos/ECC/pacu-librustzcash/zcash_client_backend" }
#zcash_client_sqlite = { path = "/Users/pacu/Repos/ECC/pacu-librustzcash/zcash_client_sqlite" }
#zcash_primitives = { path = "/Users/pacu/Repos/ECC/pacu-librustzcash/zcash_primitives" }
#zcash_proofs = { path = "/Users/pacu/Repos/ECC/pacu-librustzcash/zcash_proofs" }
2021-02-15 11:15:50 -08:00
2020-01-14 14:25:14 -08:00
[features]
2021-04-02 15:18:16 -07:00
mainnet = ["zcash_client_sqlite/mainnet", "zcash_client_backend/transparent-inputs", "zcash_primitives/transparent-inputs"]
testnet = ["zcash_client_backend/transparent-inputs", "zcash_primitives/transparent-inputs"]