Skip to content
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

First stab at migrating to CometBFT-rs #190

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"
repository = "https://github.com/cosmos/ibc-proto-rs"
readme = "README.md"
categories = ["cryptography::cryptocurrencies", "encoding", "no-std"]
keywords = ["blockchain", "cosmos", "tendermint", "ibc", "proto"]
keywords = ["blockchain", "cosmos", "interchain", "ibc", "proto"]
exclude = ["definitions", "tools", ".changelog", ".github"]
description = """
ibc-proto provides Cosmos SDK & IBC Protocol Buffers definitions
Expand Down Expand Up @@ -47,8 +47,8 @@ scale-info = { version = "2.1.2", default-features = false, features = [
## For borsh encode or decode, needs to track `anchor-lang` and `near-sdk-rs` borsh version
borsh = { version = "0.10", default-features = false, optional = true }

[dependencies.tendermint-proto]
version = "0.34"
[dependencies.cometbft-proto]
version = "0.1.0-alpha.2"
default-features = false

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

pub mod google;

pub use tendermint_proto::Protobuf;
pub use cometbft_proto::Protobuf;

extern crate alloc;

Expand Down
4 changes: 2 additions & 2 deletions src/prost/cosmos.base.abci.v1beta1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
///
/// Since: cosmos-sdk 0.42.11, 0.44.5, 0.45
#[prost(message, repeated, tag = "13")]
pub events: ::prost::alloc::vec::Vec<::tendermint_proto::abci::Event>,
pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>,

Check failure on line 52 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Event` in module `cometbft_proto::abci`

error[E0412]: cannot find type `Event` in module `cometbft_proto::abci` --> src/prost/cosmos.base.abci.v1beta1.rs:52:66 | 52 | pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>, | ^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:113:17 | 113+ use cometbft_proto::abci::v1::Event; --> src/lib.rs:113:17 | 113+ use cometbft_proto::abci::v1beta1::Event; --> src/lib.rs:113:17 | 113+ use cometbft_proto::abci::v1beta2::Event; | help: if you import `Event`, refer to it directly | 52 - pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>, 52 + pub events: ::prost::alloc::vec::Vec<Event>, |

Check failure on line 52 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Event` in module `cometbft_proto::abci`

error[E0412]: cannot find type `Event` in module `cometbft_proto::abci` --> src/prost/cosmos.base.abci.v1beta1.rs:52:66 | 52 | pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>, | ^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:113:17 | 113+ use cometbft_proto::abci::v1::Event; --> src/lib.rs:113:17 | 113+ use cometbft_proto::abci::v1beta1::Event; --> src/lib.rs:113:17 | 113+ use cometbft_proto::abci::v1beta2::Event; | help: if you import `Event`, refer to it directly | 52 - pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>, 52 + pub events: ::prost::alloc::vec::Vec<Event>, |

Check failure on line 52 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `Event` in module `cometbft_proto::abci`

Check failure on line 52 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `Event` in module `cometbft_proto::abci`

Check failure on line 52 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `Event` in module `cometbft_proto::abci`

Check failure on line 52 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `Event` in module `cometbft_proto::abci`
}
impl ::prost::Name for TxResponse {
const NAME: &'static str = "TxResponse";
Expand Down Expand Up @@ -147,7 +147,7 @@
/// Events contains a slice of Event objects that were emitted during message
/// or handler execution.
#[prost(message, repeated, tag = "3")]
pub events: ::prost::alloc::vec::Vec<::tendermint_proto::abci::Event>,
pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>,

Check failure on line 150 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Event` in module `cometbft_proto::abci`

error[E0412]: cannot find type `Event` in module `cometbft_proto::abci` --> src/prost/cosmos.base.abci.v1beta1.rs:150:66 | 150 | pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>, | ^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:113:17 | 113 + use cometbft_proto::abci::v1::Event; --> |src/lib.rs:113:17 | 113 + use cometbft_proto::abci::v1beta1::Event; --> |src/lib.rs:113:17 | 113 + use cometbft_proto::abci::v1beta2::Event; | help: if you import `Event`, refer to it directly | 150 - pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>, 150 + pub events: ::prost::alloc::vec::Vec<Event>, |

Check failure on line 150 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Event` in module `cometbft_proto::abci`

error[E0412]: cannot find type `Event` in module `cometbft_proto::abci` --> src/prost/cosmos.base.abci.v1beta1.rs:150:66 | 150 | pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>, | ^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:113:17 | 113 + use cometbft_proto::abci::v1::Event; --> |src/lib.rs:113:17 | 113 + use cometbft_proto::abci::v1beta1::Event; --> |src/lib.rs:113:17 | 113 + use cometbft_proto::abci::v1beta2::Event; | help: if you import `Event`, refer to it directly | 150 - pub events: ::prost::alloc::vec::Vec<::cometbft_proto::abci::Event>, 150 + pub events: ::prost::alloc::vec::Vec<Event>, |

Check failure on line 150 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `Event` in module `cometbft_proto::abci`

Check failure on line 150 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `Event` in module `cometbft_proto::abci`

Check failure on line 150 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `Event` in module `cometbft_proto::abci`

Check failure on line 150 in src/prost/cosmos.base.abci.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `Event` in module `cometbft_proto::abci`
/// msg_responses contains the Msg handler responses type packed in Anys.
///
/// Since: cosmos-sdk 0.46
Expand Down
20 changes: 10 additions & 10 deletions src/prost/cosmos.base.tendermint.v1beta1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#[prost(message, optional, tag = "1")]
pub header: ::core::option::Option<Header>,
#[prost(message, optional, tag = "2")]
pub data: ::core::option::Option<::tendermint_proto::types::Data>,
pub data: ::core::option::Option<::cometbft_proto::types::Data>,

Check failure on line 9 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Data` in module `cometbft_proto::types`

error[E0412]: cannot find type `Data` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:9:63 | 9 | pub data: ::core::option::Option<::cometbft_proto::types::Data>, | ^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 14+ use cometbft_proto::types::v1::Data; --> src/lib.rs:144:17 | 14+ use cometbft_proto::types::v1beta1::Data; --> src/lib.rs:144:17 | 14+ use crate::cosmos::tx::signing::v1beta1::signature_descriptor::Data; --> src/lib.rs:144:17 | 14+ use crate::interchain_security::ccv::provider::v1::throttled_packet_data_wrapper::Data; | and 2 other candidates help: if you import `Data`, refer to it directly | 9 - pub data: ::core::option::Option<::cometbft_proto::types::Data>, 9 + pub data: ::core::option::Option<Data>, |

Check failure on line 9 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Data` in module `cometbft_proto::types`

error[E0412]: cannot find type `Data` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:9:63 | 9 | pub data: ::core::option::Option<::cometbft_proto::types::Data>, | ^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 14+ use cometbft_proto::types::v1::Data; --> src/lib.rs:144:17 | 14+ use cometbft_proto::types::v1beta1::Data; --> src/lib.rs:144:17 | 14+ use crate::cosmos::tx::signing::v1beta1::signature_descriptor::Data; --> src/lib.rs:144:17 | 14+ use crate::interchain_security::ccv::provider::v1::throttled_packet_data_wrapper::Data; | and 2 other candidates help: if you import `Data`, refer to it directly | 9 - pub data: ::core::option::Option<::cometbft_proto::types::Data>, 9 + pub data: ::core::option::Option<Data>, |

Check failure on line 9 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `Data` in module `cometbft_proto::types`

Check failure on line 9 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `Data` in module `cometbft_proto::types`

Check failure on line 9 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `Data` in module `cometbft_proto::types`

Check failure on line 9 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `Data` in module `cometbft_proto::types`
#[prost(message, optional, tag = "3")]
pub evidence: ::core::option::Option<::tendermint_proto::types::EvidenceList>,
pub evidence: ::core::option::Option<::cometbft_proto::types::EvidenceList>,

Check failure on line 11 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `EvidenceList` in module `cometbft_proto::types`

error[E0412]: cannot find type `EvidenceList` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:11:67 | 11 | pub evidence: ::core::option::Option<::cometbft_proto::types::EvidenceList>, | ^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1::EvidenceList; --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1beta1::EvidenceList; | help: if you import `EvidenceList`, refer to it directly | 11 - pub evidence: ::core::option::Option<::cometbft_proto::types::EvidenceList>, 11 + pub evidence: ::core::option::Option<EvidenceList>, |

Check failure on line 11 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `EvidenceList` in module `cometbft_proto::types`

error[E0412]: cannot find type `EvidenceList` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:11:67 | 11 | pub evidence: ::core::option::Option<::cometbft_proto::types::EvidenceList>, | ^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1::EvidenceList; --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1beta1::EvidenceList; | help: if you import `EvidenceList`, refer to it directly | 11 - pub evidence: ::core::option::Option<::cometbft_proto::types::EvidenceList>, 11 + pub evidence: ::core::option::Option<EvidenceList>, |

Check failure on line 11 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `EvidenceList` in module `cometbft_proto::types`

Check failure on line 11 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `EvidenceList` in module `cometbft_proto::types`

Check failure on line 11 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `EvidenceList` in module `cometbft_proto::types`

Check failure on line 11 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `EvidenceList` in module `cometbft_proto::types`
#[prost(message, optional, tag = "4")]
pub last_commit: ::core::option::Option<::tendermint_proto::types::Commit>,
pub last_commit: ::core::option::Option<::cometbft_proto::types::Commit>,

Check failure on line 13 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Commit` in module `cometbft_proto::types`

error[E0412]: cannot find type `Commit` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:13:70 | 13 | pub last_commit: ::core::option::Option<::cometbft_proto::types::Commit>, | ^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1::Commit; --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1beta1::Commit; | help: if you import `Commit`, refer to it directly | 13 - pub last_commit: ::core::option::Option<::cometbft_proto::types::Commit>, 13 + pub last_commit: ::core::option::Option<Commit>, |

Check failure on line 13 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Commit` in module `cometbft_proto::types`

error[E0412]: cannot find type `Commit` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:13:70 | 13 | pub last_commit: ::core::option::Option<::cometbft_proto::types::Commit>, | ^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1::Commit; --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1beta1::Commit; | help: if you import `Commit`, refer to it directly | 13 - pub last_commit: ::core::option::Option<::cometbft_proto::types::Commit>, 13 + pub last_commit: ::core::option::Option<Commit>, |

Check failure on line 13 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `Commit` in module `cometbft_proto::types`

Check failure on line 13 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `Commit` in module `cometbft_proto::types`

Check failure on line 13 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `Commit` in module `cometbft_proto::types`

Check failure on line 13 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `Commit` in module `cometbft_proto::types`
}
impl ::prost::Name for Block {
const NAME: &'static str = "Block";
Expand All @@ -25,7 +25,7 @@
pub struct Header {
/// basic block info
#[prost(message, optional, tag = "1")]
pub version: ::core::option::Option<::tendermint_proto::version::Consensus>,
pub version: ::core::option::Option<::cometbft_proto::version::Consensus>,

Check failure on line 28 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Consensus` in module `cometbft_proto::version`

error[E0412]: cannot find type `Consensus` in module `cometbft_proto::version` --> src/prost/cosmos.base.tendermint.v1beta1.rs:28:68 | 28 | pub version: ::core::option::Option<::cometbft_proto::version::Consensus>, | ^^^^^^^^^ not found in `cometbft_proto::version` | help: consider importing this struct --> src/lib.rs:144:17 | 144+ use cometbft_proto::version::v1::Consensus; | help: if you import `Consensus`, refer to it directly | 28 - pub version: ::core::option::Option<::cometbft_proto::version::Consensus>, 28 + pub version: ::core::option::Option<Consensus>, |

Check failure on line 28 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Consensus` in module `cometbft_proto::version`

error[E0412]: cannot find type `Consensus` in module `cometbft_proto::version` --> src/prost/cosmos.base.tendermint.v1beta1.rs:28:68 | 28 | pub version: ::core::option::Option<::cometbft_proto::version::Consensus>, | ^^^^^^^^^ not found in `cometbft_proto::version` | help: consider importing this struct --> src/lib.rs:144:17 | 144+ use cometbft_proto::version::v1::Consensus; | help: if you import `Consensus`, refer to it directly | 28 - pub version: ::core::option::Option<::cometbft_proto::version::Consensus>, 28 + pub version: ::core::option::Option<Consensus>, |

Check failure on line 28 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `Consensus` in module `cometbft_proto::version`

Check failure on line 28 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `Consensus` in module `cometbft_proto::version`

Check failure on line 28 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `Consensus` in module `cometbft_proto::version`

Check failure on line 28 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `Consensus` in module `cometbft_proto::version`
#[prost(string, tag = "2")]
pub chain_id: ::prost::alloc::string::String,
#[prost(int64, tag = "3")]
Expand All @@ -36,7 +36,7 @@
>,
/// prev block info
#[prost(message, optional, tag = "5")]
pub last_block_id: ::core::option::Option<::tendermint_proto::types::BlockId>,
pub last_block_id: ::core::option::Option<::cometbft_proto::types::BlockId>,

Check failure on line 39 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `BlockId` in module `cometbft_proto::types`

error[E0412]: cannot find type `BlockId` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:39:72 | 39 | pub last_block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, | ^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1::BlockId; --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1beta1::BlockId; | help: if you import `BlockId`, refer to it directly | 39 - pub last_block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, 39 + pub last_block_id: ::core::option::Option<BlockId>, |

Check failure on line 39 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `BlockId` in module `cometbft_proto::types`

error[E0412]: cannot find type `BlockId` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:39:72 | 39 | pub last_block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, | ^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1::BlockId; --> src/lib.rs:144:17 | 144+ use cometbft_proto::types::v1beta1::BlockId; | help: if you import `BlockId`, refer to it directly | 39 - pub last_block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, 39 + pub last_block_id: ::core::option::Option<BlockId>, |

Check failure on line 39 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `BlockId` in module `cometbft_proto::types`

Check failure on line 39 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `BlockId` in module `cometbft_proto::types`

Check failure on line 39 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `BlockId` in module `cometbft_proto::types`

Check failure on line 39 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `BlockId` in module `cometbft_proto::types`
/// hashes of block data
///
/// commit from validators from the last block
Expand Down Expand Up @@ -193,10 +193,10 @@
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetBlockByHeightResponse {
#[prost(message, optional, tag = "1")]
pub block_id: ::core::option::Option<::tendermint_proto::types::BlockId>,
pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>,

Check failure on line 196 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `BlockId` in module `cometbft_proto::types`

error[E0412]: cannot find type `BlockId` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:196:67 | 196 | pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, | ^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1::BlockId; --> |src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1beta1::BlockId; | help: if you import `BlockId`, refer to it directly | 196 - pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, 196 + pub block_id: ::core::option::Option<BlockId>, |

Check failure on line 196 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `BlockId` in module `cometbft_proto::types`

error[E0412]: cannot find type `BlockId` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:196:67 | 196 | pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, | ^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1::BlockId; --> |src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1beta1::BlockId; | help: if you import `BlockId`, refer to it directly | 196 - pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, 196 + pub block_id: ::core::option::Option<BlockId>, |

Check failure on line 196 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `BlockId` in module `cometbft_proto::types`

Check failure on line 196 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `BlockId` in module `cometbft_proto::types`

Check failure on line 196 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `BlockId` in module `cometbft_proto::types`

Check failure on line 196 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `BlockId` in module `cometbft_proto::types`
/// Deprecated: please use `sdk_block` instead
#[prost(message, optional, tag = "2")]
pub block: ::core::option::Option<::tendermint_proto::types::Block>,
pub block: ::core::option::Option<::cometbft_proto::types::Block>,

Check failure on line 199 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Block` in module `cometbft_proto::types`

error[E0412]: cannot find type `Block` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:199:64 | 199 | pub block: ::core::option::Option<::cometbft_proto::types::Block>, | ^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1::Block; --> |src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1beta1::Block; | help: if you import `Block`, refer to it directly | 199 - pub block: ::core::option::Option<::cometbft_proto::types::Block>, 199 + pub block: ::core::option::Option<Block>, |

Check failure on line 199 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Block` in module `cometbft_proto::types`

error[E0412]: cannot find type `Block` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:199:64 | 199 | pub block: ::core::option::Option<::cometbft_proto::types::Block>, | ^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1::Block; --> |src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1beta1::Block; | help: if you import `Block`, refer to it directly | 199 - pub block: ::core::option::Option<::cometbft_proto::types::Block>, 199 + pub block: ::core::option::Option<Block>, |
/// Since: cosmos-sdk 0.47
#[prost(message, optional, tag = "3")]
pub sdk_block: ::core::option::Option<Block>,
Expand Down Expand Up @@ -224,10 +224,10 @@
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetLatestBlockResponse {
#[prost(message, optional, tag = "1")]
pub block_id: ::core::option::Option<::tendermint_proto::types::BlockId>,
pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>,

Check failure on line 227 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `BlockId` in module `cometbft_proto::types`

error[E0412]: cannot find type `BlockId` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:227:67 | 227 | pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, | ^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1::BlockId; --> |src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1beta1::BlockId; | help: if you import `BlockId`, refer to it directly | 227 - pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, 227 + pub block_id: ::core::option::Option<BlockId>, |

Check failure on line 227 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `BlockId` in module `cometbft_proto::types`

error[E0412]: cannot find type `BlockId` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:227:67 | 227 | pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, | ^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1::BlockId; --> |src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1beta1::BlockId; | help: if you import `BlockId`, refer to it directly | 227 - pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, 227 + pub block_id: ::core::option::Option<BlockId>, |
/// Deprecated: please use `sdk_block` instead
#[prost(message, optional, tag = "2")]
pub block: ::core::option::Option<::tendermint_proto::types::Block>,
pub block: ::core::option::Option<::cometbft_proto::types::Block>,

Check failure on line 230 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Block` in module `cometbft_proto::types`

error[E0412]: cannot find type `Block` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:230:64 | 230 | pub block: ::core::option::Option<::cometbft_proto::types::Block>, | ^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1::Block; --> |src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1beta1::Block; | help: if you import `Block`, refer to it directly | 230 - pub block: ::core::option::Option<::cometbft_proto::types::Block>, 230 + pub block: ::core::option::Option<Block>, |

Check failure on line 230 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Block` in module `cometbft_proto::types`

error[E0412]: cannot find type `Block` in module `cometbft_proto::types` --> src/prost/cosmos.base.tendermint.v1beta1.rs:230:64 | 230 | pub block: ::core::option::Option<::cometbft_proto::types::Block>, | ^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1::Block; --> |src/lib.rs:144:17 | 144 + use cometbft_proto::types::v1beta1::Block; | help: if you import `Block`, refer to it directly | 230 - pub block: ::core::option::Option<::cometbft_proto::types::Block>, 230 + pub block: ::core::option::Option<Block>, |
/// Since: cosmos-sdk 0.47
#[prost(message, optional, tag = "3")]
pub sdk_block: ::core::option::Option<Block>,
Expand Down Expand Up @@ -281,7 +281,7 @@
pub struct GetNodeInfoResponse {
#[prost(message, optional, tag = "1")]
pub default_node_info: ::core::option::Option<
::tendermint_proto::p2p::DefaultNodeInfo,
::cometbft_proto::p2p::DefaultNodeInfo,

Check failure on line 284 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `DefaultNodeInfo` in module `cometbft_proto::p2p`

error[E0412]: cannot find type `DefaultNodeInfo` in module `cometbft_proto::p2p` --> src/prost/cosmos.base.tendermint.v1beta1.rs:284:32 | 284 | ::cometbft_proto::p2p::DefaultNodeInfo, | ^^^^^^^^^^^^^^^ not found in `cometbft_proto::p2p` | help: consider importing this struct --> src/lib.rs:144:17 | 144 + use cometbft_proto::p2p::v1::DefaultNodeInfo; | help: if you import `DefaultNodeInfo`, refer to it directly | 284 - ::cometbft_proto::p2p::DefaultNodeInfo, 284 + DefaultNodeInfo, |

Check failure on line 284 in src/prost/cosmos.base.tendermint.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `DefaultNodeInfo` in module `cometbft_proto::p2p`

error[E0412]: cannot find type `DefaultNodeInfo` in module `cometbft_proto::p2p` --> src/prost/cosmos.base.tendermint.v1beta1.rs:284:32 | 284 | ::cometbft_proto::p2p::DefaultNodeInfo, | ^^^^^^^^^^^^^^^ not found in `cometbft_proto::p2p` | help: consider importing this struct --> src/lib.rs:144:17 | 144 + use cometbft_proto::p2p::v1::DefaultNodeInfo; | help: if you import `DefaultNodeInfo`, refer to it directly | 284 - ::cometbft_proto::p2p::DefaultNodeInfo, 284 + DefaultNodeInfo, |
>,
#[prost(message, optional, tag = "2")]
pub application_version: ::core::option::Option<VersionInfo>,
Expand Down
4 changes: 2 additions & 2 deletions src/prost/cosmos.staking.v1beta1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct HistoricalInfo {
#[prost(message, optional, tag = "1")]
pub header: ::core::option::Option<::tendermint_proto::types::Header>,
pub header: ::core::option::Option<::cometbft_proto::types::Header>,

Check failure on line 9 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Header` in module `cometbft_proto::types`

error[E0412]: cannot find type `Header` in module `cometbft_proto::types` --> src/prost/cosmos.staking.v1beta1.rs:9:65 | 9 | pub header: ::core::option::Option<::cometbft_proto::types::Header>, | ^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:84:13 | 84+ use cometbft_proto::types::v1::Header; --> src/lib.rs:84:13 | 84+ use cometbft_proto::types::v1beta1::Header; --> src/lib.rs:84:13 | 84+ use crate::cosmos::base::tendermint::v1beta1::Header; --> src/lib.rs:84:13 | 84+ use crate::ibc::lightclients::solomachine::v3::Header; | and 2 other candidates help: if you import `Header`, refer to it directly | 9 - pub header: ::core::option::Option<::cometbft_proto::types::Header>, 9 + pub header: ::core::option::Option<Header>, |

Check failure on line 9 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Header` in module `cometbft_proto::types`

error[E0412]: cannot find type `Header` in module `cometbft_proto::types` --> src/prost/cosmos.staking.v1beta1.rs:9:65 | 9 | pub header: ::core::option::Option<::cometbft_proto::types::Header>, | ^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:84:13 | 84+ use cometbft_proto::types::v1::Header; --> src/lib.rs:84:13 | 84+ use cometbft_proto::types::v1beta1::Header; --> src/lib.rs:84:13 | 84+ use crate::cosmos::base::tendermint::v1beta1::Header; --> src/lib.rs:84:13 | 84+ use crate::ibc::lightclients::solomachine::v3::Header; | and 2 other candidates help: if you import `Header`, refer to it directly | 9 - pub header: ::core::option::Option<::cometbft_proto::types::Header>, 9 + pub header: ::core::option::Option<Header>, |

Check failure on line 9 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `Header` in module `cometbft_proto::types`

Check failure on line 9 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `Header` in module `cometbft_proto::types`

Check failure on line 9 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `Header` in module `cometbft_proto::types`

Check failure on line 9 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `Header` in module `cometbft_proto::types`
#[prost(message, repeated, tag = "2")]
pub valset: ::prost::alloc::vec::Vec<Validator>,
}
Expand Down Expand Up @@ -477,7 +477,7 @@
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorUpdates {
#[prost(message, repeated, tag = "1")]
pub updates: ::prost::alloc::vec::Vec<::tendermint_proto::abci::ValidatorUpdate>,
pub updates: ::prost::alloc::vec::Vec<::cometbft_proto::abci::ValidatorUpdate>,

Check failure on line 480 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

error[E0412]: cannot find type `ValidatorUpdate` in module `cometbft_proto::abci` --> src/prost/cosmos.staking.v1beta1.rs:480:67 | 480 | pub updates: ::prost::alloc::vec::Vec<::cometbft_proto::abci::ValidatorUpdate>, | ^^^^^^^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:84:13 | 84 + use cometbft_proto::abci::v1::ValidatorUpdate; --> |src/lib.rs:84:13 | 84 + use cometbft_proto::abci::v1beta1::ValidatorUpdate; | help: if you import `ValidatorUpdate`, refer to it directly | 480 - pub updates: ::prost::alloc::vec::Vec<::cometbft_proto::abci::ValidatorUpdate>, 480 + pub updates: ::prost::alloc::vec::Vec<ValidatorUpdate>, |

Check failure on line 480 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

error[E0412]: cannot find type `ValidatorUpdate` in module `cometbft_proto::abci` --> src/prost/cosmos.staking.v1beta1.rs:480:67 | 480 | pub updates: ::prost::alloc::vec::Vec<::cometbft_proto::abci::ValidatorUpdate>, | ^^^^^^^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:84:13 | 84 + use cometbft_proto::abci::v1::ValidatorUpdate; --> |src/lib.rs:84:13 | 84 + use cometbft_proto::abci::v1beta1::ValidatorUpdate; | help: if you import `ValidatorUpdate`, refer to it directly | 480 - pub updates: ::prost::alloc::vec::Vec<::cometbft_proto::abci::ValidatorUpdate>, 480 + pub updates: ::prost::alloc::vec::Vec<ValidatorUpdate>, |

Check failure on line 480 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / publish-dry-run

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

Check failure on line 480 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-stable

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

Check failure on line 480 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / doc

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

Check failure on line 480 in src/prost/cosmos.staking.v1beta1.rs

View workflow job for this annotation

GitHub Actions / test-build

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`
}
impl ::prost::Name for ValidatorUpdates {
const NAME: &'static str = "ValidatorUpdates";
Expand Down
4 changes: 2 additions & 2 deletions src/prost/cosmos.tx.v1beta1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,9 +587,9 @@
#[prost(message, repeated, tag = "1")]
pub txs: ::prost::alloc::vec::Vec<Tx>,
#[prost(message, optional, tag = "2")]
pub block_id: ::core::option::Option<::tendermint_proto::types::BlockId>,
pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>,

Check failure on line 590 in src/prost/cosmos.tx.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `BlockId` in module `cometbft_proto::types`

error[E0412]: cannot find type `BlockId` in module `cometbft_proto::types` --> src/prost/cosmos.tx.v1beta1.rs:590:67 | 590 | pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, | ^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:219:13 | 219 + use cometbft_proto::types::v1::BlockId; --> |src/lib.rs:219:13 | 219 + use cometbft_proto::types::v1beta1::BlockId; | help: if you import `BlockId`, refer to it directly | 590 - pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, 590 + pub block_id: ::core::option::Option<BlockId>, |

Check failure on line 590 in src/prost/cosmos.tx.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `BlockId` in module `cometbft_proto::types`

error[E0412]: cannot find type `BlockId` in module `cometbft_proto::types` --> src/prost/cosmos.tx.v1beta1.rs:590:67 | 590 | pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, | ^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:219:13 | 219 + use cometbft_proto::types::v1::BlockId; --> |src/lib.rs:219:13 | 219 + use cometbft_proto::types::v1beta1::BlockId; | help: if you import `BlockId`, refer to it directly | 590 - pub block_id: ::core::option::Option<::cometbft_proto::types::BlockId>, 590 + pub block_id: ::core::option::Option<BlockId>, |
#[prost(message, optional, tag = "3")]
pub block: ::core::option::Option<::tendermint_proto::types::Block>,
pub block: ::core::option::Option<::cometbft_proto::types::Block>,

Check failure on line 592 in src/prost/cosmos.tx.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Block` in module `cometbft_proto::types`

error[E0412]: cannot find type `Block` in module `cometbft_proto::types` --> src/prost/cosmos.tx.v1beta1.rs:592:64 | 592 | pub block: ::core::option::Option<::cometbft_proto::types::Block>, | ^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:219:13 | 219 + use cometbft_proto::types::v1::Block; --> |src/lib.rs:219:13 | 219 + use cometbft_proto::types::v1beta1::Block; --> |src/lib.rs:219:13 | 219 + use crate::cosmos::base::tendermint::v1beta1::Block; | help: if you import `Block`, refer to it directly | 592 - pub block: ::core::option::Option<::cometbft_proto::types::Block>, 592 + pub block: ::core::option::Option<Block>, |

Check failure on line 592 in src/prost/cosmos.tx.v1beta1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Block` in module `cometbft_proto::types`

error[E0412]: cannot find type `Block` in module `cometbft_proto::types` --> src/prost/cosmos.tx.v1beta1.rs:592:64 | 592 | pub block: ::core::option::Option<::cometbft_proto::types::Block>, | ^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:219:13 | 219 + use cometbft_proto::types::v1::Block; --> |src/lib.rs:219:13 | 219 + use cometbft_proto::types::v1beta1::Block; --> |src/lib.rs:219:13 | 219 + use crate::cosmos::base::tendermint::v1beta1::Block; | help: if you import `Block`, refer to it directly | 592 - pub block: ::core::option::Option<::cometbft_proto::types::Block>, 592 + pub block: ::core::option::Option<Block>, |
/// pagination defines a pagination for the response.
#[prost(message, optional, tag = "4")]
pub pagination: ::core::option::Option<
Expand Down
6 changes: 3 additions & 3 deletions src/prost/ibc.lightclients.tendermint.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,16 @@
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Header {
#[prost(message, optional, tag = "1")]
pub signed_header: ::core::option::Option<::tendermint_proto::types::SignedHeader>,
pub signed_header: ::core::option::Option<::cometbft_proto::types::SignedHeader>,

Check failure on line 128 in src/prost/ibc.lightclients.tendermint.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `SignedHeader` in module `cometbft_proto::types`

error[E0412]: cannot find type `SignedHeader` in module `cometbft_proto::types` --> src/prost/ibc.lightclients.tendermint.v1.rs:128:72 | 128 | pub signed_header: ::core::option::Option<::cometbft_proto::types::SignedHeader>, | ^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1::SignedHeader; --> |src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1beta1::SignedHeader; | help: if you import `SignedHeader`, refer to it directly | 128 - pub signed_header: ::core::option::Option<::cometbft_proto::types::SignedHeader>, 128 + pub signed_header: ::core::option::Option<SignedHeader>, |

Check failure on line 128 in src/prost/ibc.lightclients.tendermint.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `SignedHeader` in module `cometbft_proto::types`

error[E0412]: cannot find type `SignedHeader` in module `cometbft_proto::types` --> src/prost/ibc.lightclients.tendermint.v1.rs:128:72 | 128 | pub signed_header: ::core::option::Option<::cometbft_proto::types::SignedHeader>, | ^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1::SignedHeader; --> |src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1beta1::SignedHeader; | help: if you import `SignedHeader`, refer to it directly | 128 - pub signed_header: ::core::option::Option<::cometbft_proto::types::SignedHeader>, 128 + pub signed_header: ::core::option::Option<SignedHeader>, |
#[prost(message, optional, tag = "2")]
pub validator_set: ::core::option::Option<::tendermint_proto::types::ValidatorSet>,
pub validator_set: ::core::option::Option<::cometbft_proto::types::ValidatorSet>,

Check failure on line 130 in src/prost/ibc.lightclients.tendermint.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorSet` in module `cometbft_proto::types`

error[E0412]: cannot find type `ValidatorSet` in module `cometbft_proto::types` --> src/prost/ibc.lightclients.tendermint.v1.rs:130:72 | 130 | pub validator_set: ::core::option::Option<::cometbft_proto::types::ValidatorSet>, | ^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1::ValidatorSet; --> |src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1beta1::ValidatorSet; | help: if you import `ValidatorSet`, refer to it directly | 130 - pub validator_set: ::core::option::Option<::cometbft_proto::types::ValidatorSet>, 130 + pub validator_set: ::core::option::Option<ValidatorSet>, |

Check failure on line 130 in src/prost/ibc.lightclients.tendermint.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorSet` in module `cometbft_proto::types`

error[E0412]: cannot find type `ValidatorSet` in module `cometbft_proto::types` --> src/prost/ibc.lightclients.tendermint.v1.rs:130:72 | 130 | pub validator_set: ::core::option::Option<::cometbft_proto::types::ValidatorSet>, | ^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1::ValidatorSet; --> |src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1beta1::ValidatorSet; | help: if you import `ValidatorSet`, refer to it directly | 130 - pub validator_set: ::core::option::Option<::cometbft_proto::types::ValidatorSet>, 130 + pub validator_set: ::core::option::Option<ValidatorSet>, |
#[prost(message, optional, tag = "3")]
pub trusted_height: ::core::option::Option<
super::super::super::core::client::v1::Height,
>,
#[prost(message, optional, tag = "4")]
pub trusted_validators: ::core::option::Option<
::tendermint_proto::types::ValidatorSet,
::cometbft_proto::types::ValidatorSet,

Check failure on line 137 in src/prost/ibc.lightclients.tendermint.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorSet` in module `cometbft_proto::types`

error[E0412]: cannot find type `ValidatorSet` in module `cometbft_proto::types` --> src/prost/ibc.lightclients.tendermint.v1.rs:137:34 | 137 | ::cometbft_proto::types::ValidatorSet, | ^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1::ValidatorSet; --> |src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1beta1::ValidatorSet; | help: if you import `ValidatorSet`, refer to it directly | 137 - ::cometbft_proto::types::ValidatorSet, 137 + ValidatorSet, |

Check failure on line 137 in src/prost/ibc.lightclients.tendermint.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorSet` in module `cometbft_proto::types`

error[E0412]: cannot find type `ValidatorSet` in module `cometbft_proto::types` --> src/prost/ibc.lightclients.tendermint.v1.rs:137:34 | 137 | ::cometbft_proto::types::ValidatorSet, | ^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1::ValidatorSet; --> |src/lib.rs:373:17 | 373 + use cometbft_proto::types::v1beta1::ValidatorSet; | help: if you import `ValidatorSet`, refer to it directly | 137 - ::cometbft_proto::types::ValidatorSet, 137 + ValidatorSet, |
>,
}
impl ::prost::Name for Header {
Expand Down
6 changes: 3 additions & 3 deletions src/prost/interchain_security.ccv.provider.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
/// an evidence of a validator that signed two conflicting votes
#[prost(message, optional, tag = "2")]
pub duplicate_vote_evidence: ::core::option::Option<
::tendermint_proto::types::DuplicateVoteEvidence,
::cometbft_proto::types::DuplicateVoteEvidence,

Check failure on line 75 in src/prost/interchain_security.ccv.provider.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `DuplicateVoteEvidence` in module `cometbft_proto::types`

error[E0412]: cannot find type `DuplicateVoteEvidence` in module `cometbft_proto::types` --> src/prost/interchain_security.ccv.provider.v1.rs:75:34 | 75 | ::cometbft_proto::types::DuplicateVoteEvidence, | ^^^^^^^^^^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:404:17 | 404+ use cometbft_proto::types::v1::DuplicateVoteEvidence; --> src/lib.rs:404:17 | 404+ use cometbft_proto::types::v1beta1::DuplicateVoteEvidence; | help: if you import `DuplicateVoteEvidence`, refer to it directly | 75 - ::cometbft_proto::types::DuplicateVoteEvidence, 75 + DuplicateVoteEvidence, |

Check failure on line 75 in src/prost/interchain_security.ccv.provider.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `DuplicateVoteEvidence` in module `cometbft_proto::types`

error[E0412]: cannot find type `DuplicateVoteEvidence` in module `cometbft_proto::types` --> src/prost/interchain_security.ccv.provider.v1.rs:75:34 | 75 | ::cometbft_proto::types::DuplicateVoteEvidence, | ^^^^^^^^^^^^^^^^^^^^^ not found in `cometbft_proto::types` | help: consider importing one of these items --> src/lib.rs:404:17 | 404+ use cometbft_proto::types::v1::DuplicateVoteEvidence; --> src/lib.rs:404:17 | 404+ use cometbft_proto::types::v1beta1::DuplicateVoteEvidence; | help: if you import `DuplicateVoteEvidence`, refer to it directly | 75 - ::cometbft_proto::types::DuplicateVoteEvidence, 75 + DuplicateVoteEvidence, |
>,
/// The light client header of the infraction block
#[prost(message, optional, tag = "3")]
Expand Down Expand Up @@ -998,7 +998,7 @@
#[prost(bytes = "vec", tag = "1")]
pub provider_addr: ::prost::alloc::vec::Vec<u8>,
#[prost(message, optional, tag = "2")]
pub prev_c_key: ::core::option::Option<::tendermint_proto::crypto::PublicKey>,
pub prev_c_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>,

Check failure on line 1001 in src/prost/interchain_security.ccv.provider.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `PublicKey` in module `cometbft_proto::crypto`

error[E0412]: cannot find type `PublicKey` in module `cometbft_proto::crypto` --> src/prost/interchain_security.ccv.provider.v1.rs:1001:70 | 1001 | pub prev_c_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>, | ^^^^^^^^^ not found in `cometbft_proto::crypto` | help: consider importing this struct --> src/lib.rs:404:17 | 404 + use cometbft_proto::crypto::v1::PublicKey; | help: if you import `PublicKey`, refer to it directly | 1001 - pub prev_c_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>, 1001 + pub prev_c_key: ::core::option::Option<PublicKey>, |

Check failure on line 1001 in src/prost/interchain_security.ccv.provider.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `PublicKey` in module `cometbft_proto::crypto`

error[E0412]: cannot find type `PublicKey` in module `cometbft_proto::crypto` --> src/prost/interchain_security.ccv.provider.v1.rs:1001:70 | 1001 | pub prev_c_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>, | ^^^^^^^^^ not found in `cometbft_proto::crypto` | help: consider importing this struct --> src/lib.rs:404:17 | 404 + use cometbft_proto::crypto::v1::PublicKey; | help: if you import `PublicKey`, refer to it directly | 1001 - pub prev_c_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>, 1001 + pub prev_c_key: ::core::option::Option<PublicKey>, |
#[prost(int64, tag = "3")]
pub power: i64,
}
Expand All @@ -1020,7 +1020,7 @@
#[prost(bytes = "vec", tag = "2")]
pub provider_addr: ::prost::alloc::vec::Vec<u8>,
#[prost(message, optional, tag = "3")]
pub consumer_key: ::core::option::Option<::tendermint_proto::crypto::PublicKey>,
pub consumer_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>,

Check failure on line 1023 in src/prost/interchain_security.ccv.provider.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `PublicKey` in module `cometbft_proto::crypto`

error[E0412]: cannot find type `PublicKey` in module `cometbft_proto::crypto` --> src/prost/interchain_security.ccv.provider.v1.rs:1023:72 | 1023 | pub consumer_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>, | ^^^^^^^^^ not found in `cometbft_proto::crypto` | help: consider importing this struct --> src/lib.rs:404:17 | 404 + use cometbft_proto::crypto::v1::PublicKey; | help: if you import `PublicKey`, refer to it directly | 1023 - pub consumer_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>, 1023 + pub consumer_key: ::core::option::Option<PublicKey>, |

Check failure on line 1023 in src/prost/interchain_security.ccv.provider.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `PublicKey` in module `cometbft_proto::crypto`

error[E0412]: cannot find type `PublicKey` in module `cometbft_proto::crypto` --> src/prost/interchain_security.ccv.provider.v1.rs:1023:72 | 1023 | pub consumer_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>, | ^^^^^^^^^ not found in `cometbft_proto::crypto` | help: consider importing this struct --> src/lib.rs:404:17 | 404 + use cometbft_proto::crypto::v1::PublicKey; | help: if you import `PublicKey`, refer to it directly | 1023 - pub consumer_key: ::core::option::Option<::cometbft_proto::crypto::PublicKey>, 1023 + pub consumer_key: ::core::option::Option<PublicKey>, |
}
impl ::prost::Name for ValidatorConsumerPubKey {
const NAME: &'static str = "ValidatorConsumerPubKey";
Expand Down
8 changes: 4 additions & 4 deletions src/prost/interchain_security.ccv.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
pub struct ValidatorSetChangePacketData {
#[prost(message, repeated, tag = "1")]
pub validator_updates: ::prost::alloc::vec::Vec<
::tendermint_proto::abci::ValidatorUpdate,
::cometbft_proto::abci::ValidatorUpdate,

Check failure on line 11 in src/prost/interchain_security.ccv.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

error[E0412]: cannot find type `ValidatorUpdate` in module `cometbft_proto::abci` --> src/prost/interchain_security.ccv.v1.rs:11:33 | 11 | ::cometbft_proto::abci::ValidatorUpdate, | ^^^^^^^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:400:13 | 400+ use cometbft_proto::abci::v1::ValidatorUpdate; --> src/lib.rs:400:13 | 400+ use cometbft_proto::abci::v1beta1::ValidatorUpdate; | help: if you import `ValidatorUpdate`, refer to it directly | 11 - ::cometbft_proto::abci::ValidatorUpdate, 11 + ValidatorUpdate, |

Check failure on line 11 in src/prost/interchain_security.ccv.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

error[E0412]: cannot find type `ValidatorUpdate` in module `cometbft_proto::abci` --> src/prost/interchain_security.ccv.v1.rs:11:33 | 11 | ::cometbft_proto::abci::ValidatorUpdate, | ^^^^^^^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:400:13 | 400+ use cometbft_proto::abci::v1::ValidatorUpdate; --> src/lib.rs:400:13 | 400+ use cometbft_proto::abci::v1beta1::ValidatorUpdate; | help: if you import `ValidatorUpdate`, refer to it directly | 11 - ::cometbft_proto::abci::ValidatorUpdate, 11 + ValidatorUpdate, |
>,
#[prost(uint64, tag = "2")]
pub valset_update_id: u64,
Expand Down Expand Up @@ -47,7 +47,7 @@
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SlashPacketData {
#[prost(message, optional, tag = "1")]
pub validator: ::core::option::Option<::tendermint_proto::abci::Validator>,
pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>,

Check failure on line 50 in src/prost/interchain_security.ccv.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Validator` in module `cometbft_proto::abci`

error[E0412]: cannot find type `Validator` in module `cometbft_proto::abci` --> src/prost/interchain_security.ccv.v1.rs:50:67 | 50 | pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>, | ^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:400:13 | 400+ use cometbft_proto::abci::v1::Validator; --> src/lib.rs:400:13 | 400+ use cometbft_proto::abci::v1beta1::Validator; --> src/lib.rs:400:13 | 400+ use cometbft_proto::types::v1::Validator; --> src/lib.rs:400:13 | 400+ use cometbft_proto::types::v1beta1::Validator; | and 2 other candidates help: if you import `Validator`, refer to it directly | 50 - pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>, 50 + pub validator: ::core::option::Option<Validator>, |

Check failure on line 50 in src/prost/interchain_security.ccv.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Validator` in module `cometbft_proto::abci`

error[E0412]: cannot find type `Validator` in module `cometbft_proto::abci` --> src/prost/interchain_security.ccv.v1.rs:50:67 | 50 | pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>, | ^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:400:13 | 400+ use cometbft_proto::abci::v1::Validator; --> src/lib.rs:400:13 | 400+ use cometbft_proto::abci::v1beta1::Validator; --> src/lib.rs:400:13 | 400+ use cometbft_proto::types::v1::Validator; --> src/lib.rs:400:13 | 400+ use cometbft_proto::types::v1beta1::Validator; | and 2 other candidates help: if you import `Validator`, refer to it directly | 50 - pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>, 50 + pub validator: ::core::option::Option<Validator>, |
/// map to the infraction block height on the provider
#[prost(uint64, tag = "2")]
pub valset_update_id: u64,
Expand Down Expand Up @@ -142,7 +142,7 @@
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SlashPacketDataV1 {
#[prost(message, optional, tag = "1")]
pub validator: ::core::option::Option<::tendermint_proto::abci::Validator>,
pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>,

Check failure on line 145 in src/prost/interchain_security.ccv.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Validator` in module `cometbft_proto::abci`

error[E0412]: cannot find type `Validator` in module `cometbft_proto::abci` --> src/prost/interchain_security.ccv.v1.rs:145:67 | 145 | pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>, | ^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:400:13 | 400 + use cometbft_proto::abci::v1::Validator; --> |src/lib.rs:400:13 | 400 + use cometbft_proto::abci::v1beta1::Validator; --> |src/lib.rs:400:13 | 400 + use cometbft_proto::types::v1::Validator; --> |src/lib.rs:400:13 | 400 + use cometbft_proto::types::v1beta1::Validator; | and 2 other candidates help: if you import `Validator`, refer to it directly | 145 - pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>, 145 + pub validator: ::core::option::Option<Validator>, |

Check failure on line 145 in src/prost/interchain_security.ccv.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `Validator` in module `cometbft_proto::abci`

error[E0412]: cannot find type `Validator` in module `cometbft_proto::abci` --> src/prost/interchain_security.ccv.v1.rs:145:67 | 145 | pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>, | ^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:400:13 | 400 + use cometbft_proto::abci::v1::Validator; --> |src/lib.rs:400:13 | 400 + use cometbft_proto::abci::v1beta1::Validator; --> |src/lib.rs:400:13 | 400 + use cometbft_proto::types::v1::Validator; --> |src/lib.rs:400:13 | 400 + use cometbft_proto::types::v1beta1::Validator; | and 2 other candidates help: if you import `Validator`, refer to it directly | 145 - pub validator: ::core::option::Option<::cometbft_proto::abci::Validator>, 145 + pub validator: ::core::option::Option<Validator>, |
/// map to the infraction block height on the provider
#[prost(uint64, tag = "2")]
pub valset_update_id: u64,
Expand Down Expand Up @@ -340,7 +340,7 @@
/// InitialValset filled in on new chain and on restart.
#[prost(message, repeated, tag = "8")]
pub initial_val_set: ::prost::alloc::vec::Vec<
::tendermint_proto::abci::ValidatorUpdate,
::cometbft_proto::abci::ValidatorUpdate,

Check failure on line 343 in src/prost/interchain_security.ccv.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

error[E0412]: cannot find type `ValidatorUpdate` in module `cometbft_proto::abci` --> src/prost/interchain_security.ccv.v1.rs:343:33 | 343 | ::cometbft_proto::abci::ValidatorUpdate, | ^^^^^^^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:400:13 | 400 + use cometbft_proto::abci::v1::ValidatorUpdate; --> |src/lib.rs:400:13 | 400 + use cometbft_proto::abci::v1beta1::ValidatorUpdate; | help: if you import `ValidatorUpdate`, refer to it directly | 343 - ::cometbft_proto::abci::ValidatorUpdate, 343 + ValidatorUpdate, |

Check failure on line 343 in src/prost/interchain_security.ccv.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`

error[E0412]: cannot find type `ValidatorUpdate` in module `cometbft_proto::abci` --> src/prost/interchain_security.ccv.v1.rs:343:33 | 343 | ::cometbft_proto::abci::ValidatorUpdate, | ^^^^^^^^^^^^^^^ not found in `cometbft_proto::abci` | help: consider importing one of these items --> src/lib.rs:400:13 | 400 + use cometbft_proto::abci::v1::ValidatorUpdate; --> |src/lib.rs:400:13 | 400 + use cometbft_proto::abci::v1beta1::ValidatorUpdate; | help: if you import `ValidatorUpdate`, refer to it directly | 343 - ::cometbft_proto::abci::ValidatorUpdate, 343 + ValidatorUpdate, |
>,
/// HeightToValsetUpdateId nil on new chain, filled in on restart.
#[prost(message, repeated, tag = "9")]
Expand Down
2 changes: 1 addition & 1 deletion src/prost/stride.interchainquery.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#[prost(bytes = "vec", tag = "3")]
pub result: ::prost::alloc::vec::Vec<u8>,
#[prost(message, optional, tag = "4")]
pub proof_ops: ::core::option::Option<::tendermint_proto::crypto::ProofOps>,
pub proof_ops: ::core::option::Option<::cometbft_proto::crypto::ProofOps>,

Check failure on line 12 in src/prost/stride.interchainquery.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ProofOps` in module `cometbft_proto::crypto`

error[E0412]: cannot find type `ProofOps` in module `cometbft_proto::crypto` --> src/prost/stride.interchainquery.v1.rs:12:69 | 12 | pub proof_ops: ::core::option::Option<::cometbft_proto::crypto::ProofOps>, | ^^^^^^^^ not found in `cometbft_proto::crypto` | help: consider importing one of these items --> src/lib.rs:418:13 | 418+ use cometbft_proto::crypto::v1::ProofOps; --> src/lib.rs:418:13 | 418+ use crate::cosmos::base::tendermint::v1beta1::ProofOps; | help: if you import `ProofOps`, refer to it directly | 12 - pub proof_ops: ::core::option::Option<::cometbft_proto::crypto::ProofOps>, 12 + pub proof_ops: ::core::option::Option<ProofOps>, |

Check failure on line 12 in src/prost/stride.interchainquery.v1.rs

View workflow job for this annotation

GitHub Actions / clippy

cannot find type `ProofOps` in module `cometbft_proto::crypto`

error[E0412]: cannot find type `ProofOps` in module `cometbft_proto::crypto` --> src/prost/stride.interchainquery.v1.rs:12:69 | 12 | pub proof_ops: ::core::option::Option<::cometbft_proto::crypto::ProofOps>, | ^^^^^^^^ not found in `cometbft_proto::crypto` | help: consider importing one of these items --> src/lib.rs:418:13 | 418+ use cometbft_proto::crypto::v1::ProofOps; --> src/lib.rs:418:13 | 418+ use crate::cosmos::base::tendermint::v1beta1::ProofOps; | help: if you import `ProofOps`, refer to it directly | 12 - pub proof_ops: ::core::option::Option<::cometbft_proto::crypto::ProofOps>, 12 + pub proof_ops: ::core::option::Option<ProofOps>, |
#[prost(int64, tag = "5")]
pub height: i64,
#[prost(string, tag = "6")]
Expand Down
2 changes: 1 addition & 1 deletion tools/proto-compiler/src/cmd/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ impl CompileCmd {
.server_mod_attribute(".", r#"#[cfg(feature = "server")]"#)
.out_dir(out_dir)
.file_descriptor_set_path(out_dir.join("proto_descriptor.bin"))
.extern_path(".tendermint", "::tendermint_proto")
.extern_path(".tendermint", "::cometbft_proto")
mzabaluev marked this conversation as resolved.
Show resolved Hide resolved
.extern_path(".ics23", "::ics23")
.type_attribute(".google.protobuf.Any", attrs_eq)
.type_attribute(".google.protobuf.Any", attrs_jsonschema)
Expand Down
Loading