44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "zebra-grpc"
|
|
version = "0.1.0-alpha.8"
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
description = "Zebra gRPC interface"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/ZcashFoundation/zebra"
|
|
edition = "2021"
|
|
|
|
readme = "../README.md"
|
|
homepage = "https://zfnd.org/zebra/"
|
|
# crates.io is limited to 5 keywords and categories
|
|
keywords = ["zebra", "zcash"]
|
|
# Must be one of <https://crates.io/category_slugs>
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
|
|
[dependencies]
|
|
|
|
futures-util = "0.3.28"
|
|
tonic = "0.12.3"
|
|
tonic-reflection = "0.12.3"
|
|
prost = "0.13.3"
|
|
serde = { version = "1.0.211", features = ["serde_derive"] }
|
|
tokio = { version = "1.41.0", features = ["macros", "rt-multi-thread"] }
|
|
tokio-stream = "0.1.16"
|
|
tower = { version = "0.4.13", features = ["util", "buffer", "timeout"] }
|
|
color-eyre = "0.6.3"
|
|
|
|
zcash_primitives.workspace = true
|
|
|
|
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.41", features = ["shielded-scan"] }
|
|
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.41" }
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.12.3"
|
|
|
|
[dev-dependencies]
|
|
insta = { version = "1.40.0", features = ["redactions", "json", "ron"] }
|
|
|
|
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
|
|
zebra-state = { path = "../zebra-state" }
|
|
zebra-test = { path = "../zebra-test" }
|
|
|