-
Notifications
You must be signed in to change notification settings - Fork 123
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
Bump tendermint-rs
dependencies to v0.39
#482
Conversation
- plugin: buf.build/community/neoeinstein-prost:v0.3.1 | ||
out: . | ||
opt: | ||
- extern_path=.tendermint=::tendermint_proto::v0_34 | ||
- plugin: buf.build/community/neoeinstein-tonic:v0.3.0 | ||
out: . | ||
opt: | ||
- compile_well_known_types | ||
- extern_path=.google.protobuf=::tendermint_proto::google::protobuf |
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.
@ash-burnt I more or less cargo culted this from #471 but couldn't actually get it to work, instead proto-build
is using a regex substitution instead (see main.rs
)
c081135
to
169dcbf
Compare
Also regenerates protos. This notably switches from sourcing the `google.protobuf` well-known types from the `prost-types` crate and using `tendermint-proto`'s definitions instead.
169dcbf
to
9861bf9
Compare
@@ -5,3 +5,6 @@ members = [ | |||
"cosmos-sdk-proto", | |||
"cosmrs" | |||
] | |||
|
|||
[patch.crates-io] | |||
tendermint-proto = { git = "https://github.com/informalsystems/tendermint-rs" } |
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.
This required a few upstream changes to tendermint-proto
which should be released soon
Also regenerates protos.
This notably switches from sourcing the
google.protobuf
well-known types from theprost-types
crate and usingtendermint-proto
's definitions instead.See also: informalsystems/tendermint-rs#1452