ZcashLightClientKit/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Normal View History

2019-05-06 06:46:00 -07:00
[package]
name = "libzcashlc"
version = "0.0.2"
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"
ffi_helpers = "0.1"
2019-05-08 06:10:11 -07:00
hex = "0.3"
[dependencies.ff]
git = "https://github.com/str4d/librustzcash.git"
branch = "note-spending-v7"
[dependencies.pairing]
git = "https://github.com/str4d/librustzcash.git"
branch = "note-spending-v7"
[dependencies.zcash_client_backend]
git = "https://github.com/str4d/librustzcash.git"
branch = "note-spending-v7"
[dependencies.zcash_client_sqlite]
git = "https://github.com/str4d/librustzcash.git"
branch = "note-spending-v7"
[dependencies.zcash_primitives]
git = "https://github.com/str4d/librustzcash.git"
branch = "note-spending-v7"
2019-05-08 06:10:11 -07:00
[dependencies.zcash_proofs]
git = "https://github.com/str4d/librustzcash.git"
branch = "note-spending-v7"
default-features = false
features = ["local-prover"]
2019-05-08 06:10:11 -07:00
[build-dependencies]
cbindgen = "0.8"
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
[features]
mainnet = ["zcash_client_sqlite/mainnet"]