75 lines
1.9 KiB
TOML
Raw Normal View History

2019-10-12 15:09:13 -07:00
[package]
name = "zecwalletlitelib"
version = "0.1.0"
edition = "2018"
[dependencies]
2019-10-22 07:42:43 -07:00
tower-grpc = "0.1.1"
2019-10-12 15:09:13 -07:00
futures = "0.1"
bytes = "0.4"
base58 = "0.1.0"
log = "0.4"
log4rs = "0.8.3"
dirs = "2.0.2"
http = "0.1"
prost = "0.5"
tokio = "0.1"
2019-10-22 07:42:43 -07:00
tower-request-modifier = "0.1.0"
2019-10-12 15:09:13 -07:00
tower-util = "0.1"
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"
ring = "0.14.0"
lazy_static = "1.2.0"
tower-service = "0.2"
tokio-rustls = "0.10.0-alpha.3"
2019-10-12 15:22:33 -07:00
rustls = { version = "0.15.2", features = ["dangerous_configuration"] }
2019-10-12 15:09:13 -07:00
webpki = "0.19.1"
webpki-roots = "0.16.0"
2019-10-22 07:42:43 -07:00
tower-h2 = { git = "https://github.com/tower-rs/tower-h2", rev="0865040d699697bbaf1c3b77b3f256b72f98cdf4" }
2019-10-12 16:54:04 -07:00
rust-embed = { version = "5.1.0", features = ["debug-embed"] }
2019-10-12 15:22:33 -07:00
rand = "0.7.2"
2019-10-19 13:09:59 -07:00
sodiumoxide = "0.2.5"
2019-10-12 15:09:13 -07:00
[dependencies.bellman]
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-12 15:22:33 -07:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-10-12 15:09:13 -07:00
default-features = false
features = ["groth16"]
[dependencies.pairing]
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-12 15:22:33 -07:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-10-12 15:09:13 -07:00
[dependencies.zcash_client_backend]
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-12 15:22:33 -07:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-10-12 15:09:13 -07:00
default-features = false
[dependencies.zcash_primitives]
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-12 15:22:33 -07:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-10-12 15:09:13 -07:00
default-features = false
features = ["transparent-inputs"]
[dependencies.zcash_proofs]
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-12 15:22:33 -07:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-10-12 15:09:13 -07:00
default-features = false
[dependencies.ff]
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-12 15:22:33 -07:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-10-12 15:09:13 -07:00
features = ["ff_derive"]
[build-dependencies]
tower-grpc-build = { git = "https://github.com/tower-rs/tower-grpc", features = ["tower-hyper"] }
2019-10-21 17:56:28 -07:00
[dev-dependencies]
tempdir = "0.3.7"