zcash-android-wallet-sdk/Cargo.toml

30 lines
792 B
TOML
Raw Normal View History

[package]
name = "zcash-wallet-sdk-poc"
version = "0.0.1"
authors = ["Kevin Gorham <kevin.gorham@z.cash>"]
description = "Simple PoC that rust can work with protobufs over JNI"
publish = false
[dependencies]
rand = "0.4"
2018-11-22 05:54:25 -08:00
rusqlite = { version = "0.15", features = ["bundled"] }
log = "0.4"
2018-11-21 08:40:18 -08:00
[dependencies.zcash_client_backend]
git = "https://github.com/str4d/librustzcash.git"
rev = "63ec78bb857a258a97d25a5a6e747389996e566a"
[dependencies.zip32]
git = "https://github.com/str4d/librustzcash.git"
rev = "63ec78bb857a258a97d25a5a6e747389996e566a"
[target.'cfg(target_os="android")'.dependencies]
2018-11-21 07:52:28 -08:00
jni = { version = "0.10", default-features = false }
android_logger = "0.6"
log-panics = "2.0.0"
[lib]
name = "zcashwalletsdk"
path = "src/main/rust/lib.rs"
crate-type = ["staticlib", "cdylib"]