You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the changes made in ibc-rs via ADR07 (see the relevant discussion), we no longer dispatch dynamic types, which means the Protobuf trait doesn't need to be object safe. That being said, if it wouldn’t be needed for any other places or projects, we might be able to simplify Protobuf abstraction in ibc-proto-rs or even can simply re-export it from the tendermint_proto crate.
Ofc, after getting Protobuf trait in tendermint-proto synced with the latest changes in ibc-proto-rs (this issue)
The text was updated successfully, but these errors were encountered:
ibc-proto-rs v0.38.0
October 19th, 2023
This release contains a breaking change, where the `Protobuf` trait is not
object-safe any longer, but rather re-exported from the `tendermint-proto` crate.
It also updates the Interchain Security protos to include misbehaviour-related messages.
BREAKING CHANGES:
- Switch from using object safe `Protobuf` definitions and re-export
`Protobuf` from `tendermint-proto` crate` instead.
(#116)
FEATURES:
- Update CCV provider protos to include misbehaviour-related messages
(#113)
ibc-proto-rs v0.38.0
October 19th, 2023
This release contains a breaking change, where the `Protobuf` trait is not
object-safe any longer, but rather re-exported from the `tendermint-proto` crate.
It also updates the Interchain Security protos to include misbehaviour-related messages.
BREAKING CHANGES:
- Switch from using object safe `Protobuf` definitions and re-export
`Protobuf` from `tendermint-proto` crate` instead.
(#116)
FEATURES:
- Update CCV provider protos to include misbehaviour-related messages
(#113)
Background
With the changes made in
ibc-rs
via ADR07 (see the relevant discussion), we no longer dispatch dynamic types, which means theProtobuf
trait doesn't need to be object safe. That being said, if it wouldn’t be needed for any other places or projects, we might be able to simplifyProtobuf
abstraction inibc-proto-rs
or even can simply re-export it from thetendermint_proto
crate.Ofc, after getting
Protobuf
trait intendermint-proto
synced with the latest changes inibc-proto-rs
(this issue)The text was updated successfully, but these errors were encountered: