-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(crate): Add a new
zebra-grpc
crate (#8167)
* add `zebra-grpc` crate * add missing fields * convert to a lib * add zebra-scan and tonic as depenency
- Loading branch information
1 parent
5bd8593
commit 001555b
Showing
4 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//! Zebra gRPC interface. | ||
#![doc(html_favicon_url = "https://zfnd.org/wp-content/uploads/2022/03/zebra-favicon-128.png")] | ||
#![doc(html_logo_url = "https://zfnd.org/wp-content/uploads/2022/03/zebra-icon.png")] | ||
#![doc(html_root_url = "https://docs.rs/zebra_grpc")] |