-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previously the crates were named to contain all future protobuf types and services, now the crates have been named to only support `attestation` with the intent to create dedicated crates for other gRPC communications.
- Loading branch information
1 parent
1d59e93
commit bc2c553
Showing
15 changed files
with
106 additions
and
100 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[package] | ||
name = "mc-attestation-grpcio" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["MobileCoin"] | ||
rust-version = { workspace = true } | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/mobilecoinfoundation/protobufs" | ||
description = "grpcio enclave attestation gRPC client and server" | ||
categories = ["api-bindings", "encoding"] | ||
keywords = ["grpc", "protobuf", "rpc"] | ||
|
||
[dependencies] | ||
mc-attestation-protobuf-types = { path = "../protobuf-types", version = "0.1.0" } |
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,22 @@ | ||
# MobileCoin: grpcio enclave attestation gRPC client and server | ||
|
||
[![Project Chat][chat-image]][chat-link]<!-- | ||
-->![License][license-image]<!-- | ||
-->![Target][target-image]<!-- | ||
-->[![Crates.io][crate-image]][crate-link]<!-- | ||
-->[![Docs Status][docs-image]][docs-link]<!-- | ||
-->[![Dependency Status][deps-image]][deps-link] | ||
|
||
[grpcio](https://docs.rs/grpcio/latest/grpcio/) implementation of gRPC client | ||
and server for enclave attestation. | ||
|
||
[chat-image]: https://img.shields.io/discord/844353360348971068?style=flat-square | ||
[chat-link]: https://mobilecoin.chat | ||
[license-image]: https://img.shields.io/crates/l/mc-attestation-grpcio?style=flat-square | ||
[target-image]: https://img.shields.io/badge/target-x86__64-blue?style=flat-square | ||
[crate-image]: https://img.shields.io/crates/v/mc-attestation-grpcio.svg?style=flat-square | ||
[crate-link]: https://crates.io/crates/mc-attestation-grpcio | ||
[docs-image]: https://img.shields.io/docsrs/mc-attestation-grpcio?style=flat-square | ||
[docs-link]: https://docs.rs/crate/mc-attestation-grpcio | ||
[deps-image]: https://deps.rs/crate/mc-attestation-grpcio/0.1.0/status.svg?style=flat-square | ||
[deps-link]: https://deps.rs/crate/mc-attestation-grpcio/0.1.0 |
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
crates/messages/Cargo.toml → crates/attestation/protobuf-types/Cargo.toml
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,22 @@ | ||
# MobileCoin: Common protobuf message types | ||
|
||
[![Project Chat][chat-image]][chat-link]<!-- | ||
-->![License][license-image]<!-- | ||
-->![Target][target-image]<!-- | ||
-->[![Crates.io][crate-image]][crate-link]<!-- | ||
-->[![Docs Status][docs-image]][docs-link]<!-- | ||
-->[![Dependency Status][deps-image]][deps-link] | ||
|
||
Common protobuf message types. [prost](https://docs.rs/prost/latest/prost/) is | ||
used for the message format. | ||
|
||
[chat-image]: https://img.shields.io/discord/844353360348971068?style=flat-square | ||
[chat-link]: https://mobilecoin.chat | ||
[license-image]: https://img.shields.io/crates/l/mc-attestation-protobuf-types?style=flat-square | ||
[target-image]: https://img.shields.io/badge/target-x86__64-blue?style=flat-square | ||
[crate-image]: https://img.shields.io/crates/v/mc-attestation-protobuf-types.svg?style=flat-square | ||
[crate-link]: https://crates.io/crates/mc-attestation-protobuf-types | ||
[docs-image]: https://img.shields.io/docsrs/mc-attestation-protobuf-types?style=flat-square | ||
[docs-link]: https://docs.rs/crate/mc-attestation-protobuf-types | ||
[deps-image]: https://deps.rs/crate/mc-attestation-protobuf-types/0.1.0/status.svg?style=flat-square | ||
[deps-link]: https://deps.rs/crate/mc-attestation-protobuf-types/0.1.0 |
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,15 @@ | ||
[package] | ||
name = "mc-attestation-tonic" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["MobileCoin"] | ||
rust-version = { workspace = true } | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/mobilecoinfoundation/protobufs" | ||
description = "Tonic enclave attestation gRPC client and server" | ||
categories = ["api-bindings", "encoding"] | ||
keywords = ["grpc", "protobuf", "rpc"] | ||
|
||
[dependencies] | ||
mc-attestation-protobuf-types = { path = "../protobuf-types", version = "0.1.0" } |
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,22 @@ | ||
# MobileCoin: Tonic enclave attestation gRPC client and server | ||
|
||
[![Project Chat][chat-image]][chat-link]<!-- | ||
-->![License][license-image]<!-- | ||
-->![Target][target-image]<!-- | ||
-->[![Crates.io][crate-image]][crate-link]<!-- | ||
-->[![Docs Status][docs-image]][docs-link]<!-- | ||
-->[![Dependency Status][deps-image]][deps-link] | ||
|
||
[Tonic](https://docs.rs/tonic/latest/tonic/) implementation of gRPC client and | ||
server for attesting to enclaves. | ||
|
||
[chat-image]: https://img.shields.io/discord/844353360348971068?style=flat-square | ||
[chat-link]: https://mobilecoin.chat | ||
[license-image]: https://img.shields.io/crates/l/mc-mc-attestation-tonic?style=flat-square | ||
[target-image]: https://img.shields.io/badge/target-x86__64-blue?style=flat-square | ||
[crate-image]: https://img.shields.io/crates/v/mc-mc-attestation-tonic.svg?style=flat-square | ||
[crate-link]: https://crates.io/crates/mc-mc-attestation-tonic | ||
[docs-image]: https://img.shields.io/docsrs/mc-mc-attestation-tonic?style=flat-square | ||
[docs-link]: https://docs.rs/crate/mc-mc-attestation-tonic | ||
[deps-image]: https://deps.rs/crate/mc-mc-attestation-tonic/0.1.0/status.svg?style=flat-square | ||
[deps-link]: https://deps.rs/crate/mc-mc-attestation-tonic/0.1.0 |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.