piratewallet-light-cli/lib/Cargo.toml

84 lines
2.0 KiB
TOML
Raw Permalink Normal View History

2019-10-12 22:09:13 +00:00
[package]
name = "zecwalletlitelib"
version = "0.1.0"
edition = "2018"
2020-05-26 02:25:39 +00:00
[features]
default = ["embed_params"]
embed_params = []
2019-10-12 22:09:13 +00:00
[dependencies]
base58 = "0.1.0"
log = "0.4"
log4rs = "0.8.3"
dirs = "2.0.2"
2019-12-31 05:09:48 +00:00
http = "0.2"
2019-10-12 22:09:13 +00:00
hex = "0.3"
protobuf = "2"
byteorder = "1"
json = "0.12.0"
tiny-bip39 = "0.6.2"
secp256k1 = "=0.15.0"
sha2 = "0.8.0"
ripemd160 = "0.8.0"
lazy_static = "1.2.0"
2019-10-12 23:54:04 +00:00
rust-embed = { version = "5.1.0", features = ["debug-embed"] }
2019-10-12 22:22:33 +00:00
rand = "0.7.2"
2019-10-19 20:09:59 +00:00
sodiumoxide = "0.2.5"
2019-12-31 05:09:48 +00:00
ring = "0.16.9"
2020-04-13 03:23:03 +00:00
libflate = "0.1"
subtle = "2"
threadpool = "1.8.0"
num_cpus = "1.12.0"
2019-12-31 05:09:48 +00:00
2020-05-14 22:01:39 +00:00
tonic = { version = "0.2.1", features = ["tls", "tls-roots"] }
2019-12-31 05:09:48 +00:00
bytes = "0.4"
2020-02-04 18:19:58 +00:00
prost = "0.6"
prost-types = "0.6"
2019-12-31 05:09:48 +00:00
tokio = { version = "0.2", features = ["rt-threaded", "time", "stream", "fs", "macros", "uds", "full"] }
2020-05-21 04:45:08 +00:00
tokio-rustls = { version = "0.13.0" }
2019-12-31 05:09:48 +00:00
webpki = "0.21.0"
webpki-roots = "0.18.0"
2019-10-12 22:09:13 +00:00
2020-09-11 17:28:20 +00:00
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
reqwest = { version = "0.10.8", features = ["blocking", "json"] }
2019-10-12 22:09:13 +00:00
[dependencies.bellman]
2021-05-11 20:42:23 +00:00
git = "https://github.com/piratenetwork/librustzcash.git"
2020-10-12 22:09:14 +00:00
rev = "2981c4d2860f7cd73282fed885daac0323ff0280"
2019-10-12 22:09:13 +00:00
default-features = false
2020-10-02 04:02:02 +00:00
features = ["groth16", "multicore"]
2019-10-12 22:09:13 +00:00
[dependencies.pairing]
2021-05-11 20:42:23 +00:00
git = "https://github.com/piratenetwork/librustzcash.git"
2020-10-12 22:09:14 +00:00
rev = "2981c4d2860f7cd73282fed885daac0323ff0280"
2019-10-12 22:09:13 +00:00
[dependencies.zcash_client_backend]
2021-05-11 20:42:23 +00:00
git = "https://github.com/piratenetwork/librustzcash.git"
2020-10-12 22:09:14 +00:00
rev = "2981c4d2860f7cd73282fed885daac0323ff0280"
2019-10-12 22:09:13 +00:00
default-features = false
[dependencies.zcash_primitives]
2021-05-11 20:42:23 +00:00
git = "https://github.com/piratenetwork/librustzcash.git"
2020-10-12 22:09:14 +00:00
rev = "2981c4d2860f7cd73282fed885daac0323ff0280"
2019-10-12 22:09:13 +00:00
default-features = false
features = ["transparent-inputs"]
[dependencies.zcash_proofs]
2021-05-11 20:42:23 +00:00
git = "https://github.com/piratenetwork/librustzcash.git"
2020-10-12 22:09:14 +00:00
rev = "2981c4d2860f7cd73282fed885daac0323ff0280"
2019-10-12 22:09:13 +00:00
default-features = false
[dependencies.ff]
2021-05-11 20:42:23 +00:00
git = "https://github.com/piratenetwork/librustzcash.git"
2020-10-12 22:09:14 +00:00
rev = "2981c4d2860f7cd73282fed885daac0323ff0280"
2019-10-12 22:09:13 +00:00
features = ["ff_derive"]
[build-dependencies]
2020-02-04 18:19:58 +00:00
tonic-build = "0.1.1"
2019-10-12 22:09:13 +00:00
2019-10-22 00:56:28 +00:00
[dev-dependencies]
tempdir = "0.3.7"