-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #258 from PeggyJV/collin/proto-build-improvements
feat:Proto crate and build improvements
- Loading branch information
Showing
12 changed files
with
389 additions
and
207 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,16 @@ | ||
[package] | ||
name = "steward-proto" | ||
description = "Protobuf bindings for Steward, the Sommelier blockchain sidecar" | ||
authors = ["Collin Brittain"] | ||
version.workspace = true | ||
edition.workspace = true | ||
keywords = ["steward", "sommelier"] | ||
repository = "https://github.com/PeggyJV/steward" | ||
readme = "README.md" | ||
categories = ["blockchain", "sommelier"] | ||
|
||
[dependencies] | ||
prost.workspace = true | ||
serde.workspace = true | ||
tonic.workspace = true | ||
|
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,4 @@ | ||
# Steward Protos | ||
|
||
This crate contains bindings for Steward's protobuf API definitions. It can be used to build tooling for Sommelier strategists in Rust. | ||
|
File renamed without changes.
File renamed without changes.
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,9 @@ | ||
//! Proto bindings for [Steward](https://github.com/peggyjv/steward), the sidecar application which hosts the Strategist API and | ||
//! handles many other key processes for the Sommelier blockchain. | ||
//! | ||
//! The proto definitions can be found [here](https://github.com/PeggyJV/steward/tree/main/proto/steward/v4) | ||
/// Generated proto definitions | ||
pub mod proto { | ||
include!("gen/steward.v4.rs"); | ||
} |
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 @@ | ||
85098a751b81941b3a36d28fd24d26189b3a20ec4cf8fcb5184e3eb778a8be32 |
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 @@ | ||
42ce538b083bd8e0909e5be03277d74f5b19aad9dae9c5fc956831579c2a61e6 |
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