Rene Vergara
d45bd7dcf3
This PR contains all the enhancements needed for the completion of Milestone 3 of the Zenith Full Node wallet. - Implementation of Rust Sapling parameters - Implementation of native Haskell commitment trees - Optimization of transaction creation Reviewed-on: https://git.vergara.tech///Vergara_Tech/zcash-haskell/pulls/101 Co-authored-by: Rene Vergara <rene@vergara.network> Co-committed-by: Rene Vergara <rene@vergara.network>
35 lines
888 B
TOML
35 lines
888 B
TOML
[package]
|
|
name = "rustzcash-wrapper"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
haskell-ffi.git = "https://github.com/BeFunctional/haskell-rust-ffi.git"
|
|
haskell-ffi.rev = "2bf292e2e56eac8e9fb0fb2e1450cf4a4bd01274"
|
|
f4jumble = "0.1"
|
|
zcash_address = "0.2.0"
|
|
borsh = "0.10"
|
|
bech32 = "0.11"
|
|
orchard = "0.10.0"
|
|
zcash_note_encryption = "0.4.0"
|
|
zcash_primitives = { version = "0.19.0", features = ["transparent-inputs"]}
|
|
zcash_client_backend = "0.14.0"
|
|
sapling-crypto = "0.3"
|
|
zip32 = "0.1.2"
|
|
proc-macro2 = "1.0.66"
|
|
nonempty = "0.7.0"
|
|
incrementalmerkletree = "0.7.0"
|
|
secp256k1 = "0.27.0"
|
|
jubjub = "0.10.0"
|
|
rand_core = { version = "0.6.4", features = ["getrandom"]}
|
|
wagyu-zcash-parameters = "0.2.0"
|
|
bip0039 = "0.12.0"
|
|
|
|
|
|
[features]
|
|
capi = []
|
|
|
|
[package.metadata.capi.library]
|
|
versioning = false
|