22 lines
590 B
TOML
22 lines
590 B
TOML
[package]
|
|
name = "zebra-grpc"
|
|
version = "0.1.0-alpha.1"
|
|
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]
|
|
|
|
tonic = "0.10.2"
|
|
|
|
zebra-scan = { path = "../zebra-scan", version = "0.1.0-alpha.1" }
|