zcash-android-wallet-sdk/Cargo.toml

64 lines
1.6 KiB
TOML
Raw Normal View History

[package]
2019-02-01 09:48:59 -08:00
name = "zcash-android-wallet-sdk"
version = "0.0.1"
2019-02-01 09:48:59 -08:00
authors = [
"Jack Grigg <jack@z.cash>",
"Kevin Gorham <kevin.gorham@z.cash>",
]
description = "JNI backend for the Android wallet SDK"
publish = false
[dependencies]
android_logger = "0.6"
failure = "0.1"
futures = { version = "0.1", optional = true }
grpc = { version = "0.6", optional = true }
hex = { version = "0.3", optional = true }
jni = { version = "0.10", default-features = false }
2019-02-07 04:58:33 -08:00
log = "0.4"
log-panics = "2.0.0"
protobuf = "2"
rand = "0.4"
2018-11-22 05:54:25 -08:00
rusqlite = { version = "0.15", features = ["bundled"] }
time = "0.1"
[dependencies.ff]
git = "https://github.com/str4d/librustzcash.git"
2019-02-08 07:23:21 -08:00
rev = "669df0fa7b2fbd8e1d2ee78d7f0c6544ea04bfd3"
[dependencies.pairing]
git = "https://github.com/str4d/librustzcash.git"
2019-02-08 07:23:21 -08:00
rev = "669df0fa7b2fbd8e1d2ee78d7f0c6544ea04bfd3"
2018-12-02 18:44:42 -08:00
[dependencies.sapling-crypto]
git = "https://github.com/str4d/librustzcash.git"
2019-02-08 07:23:21 -08:00
rev = "669df0fa7b2fbd8e1d2ee78d7f0c6544ea04bfd3"
2018-12-02 18:44:42 -08:00
2018-11-21 08:40:18 -08:00
[dependencies.zcash_client_backend]
git = "https://github.com/str4d/librustzcash.git"
2019-02-08 07:23:21 -08:00
rev = "669df0fa7b2fbd8e1d2ee78d7f0c6544ea04bfd3"
[dependencies.zcash_primitives]
git = "https://github.com/str4d/librustzcash.git"
2019-02-08 07:23:21 -08:00
rev = "669df0fa7b2fbd8e1d2ee78d7f0c6544ea04bfd3"
2018-11-21 08:40:18 -08:00
[dependencies.zip32]
git = "https://github.com/str4d/librustzcash.git"
2019-02-08 07:23:21 -08:00
rev = "669df0fa7b2fbd8e1d2ee78d7f0c6544ea04bfd3"
2018-11-21 08:40:18 -08:00
[dev-dependencies]
tempfile = "3"
[features]
updater = ["futures", "grpc", "hex"]
[lib]
name = "zcashwalletsdk"
path = "src/main/rust/lib.rs"
crate-type = ["staticlib", "cdylib"]
[[bin]]
name = "update-sapling-tree"
path = "src/main/rust/bin/update_sapling_tree.rs"
required-features = ["updater"]