-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add tonic plugin to provenance buf config so grpc client/servers are generated - guarded by grpc and grpc-transport features #158
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pub mod runtime; | ||
pub mod module; | ||
pub mod v1alpha1; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
use provwasm_proc_macro::{CosmwasmExt, SerdeEnumAsInt}; | ||
/// Module is the config object of the authz module. | ||
/// Module is the module config object for the cosmos.app v1 app module. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive( | ||
Clone, | ||
|
@@ -11,5 +11,5 @@ use provwasm_proc_macro::{CosmwasmExt, SerdeEnumAsInt}; | |
::schemars::JsonSchema, | ||
CosmwasmExt, | ||
)] | ||
#[proto_message(type_url = "/cosmos.authz.module.v1.Module")] | ||
#[proto_message(type_url = "/cosmos.app.module.v1alpha1.Module")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kwtalley there's many changes like this that I wasn't expecting as it seems like this change is going backwards? Were there manual changes to these files or were they last generated with a different version of cosmos or something? |
||
pub struct Module {} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
pub mod module; | ||
pub mod v1beta1; |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since we leverage
buf
for generation, these deps aren't needed