Skip to content

First stab at migrating to CometBFT-rs #323

First stab at migrating to CometBFT-rs

First stab at migrating to CometBFT-rs #323

Triggered via pull request February 2, 2024 14:13
Status Failure
Total duration 5m 32s
Artifacts

rust.yml

on: pull_request
cleanup-runs
7s
cleanup-runs
fmt
11s
fmt
clippy_all_features
54s
clippy_all_features
clippy_no_default_features
30s
clippy_no_default_features
check_features_powerset
30s
check_features_powerset
test-stable
58s
test-stable
test-build
52s
test-build
doc
1m 19s
doc
publish-dry-run
38s
publish-dry-run
Fit to window
Zoom out
Zoom in

Annotations

124 errors and 76 warnings
check_features_powerset
Process completed with exit code 1.
cannot find type `ProofOps` in module `cometbft_proto::crypto`: src/prost/stride.interchainquery.v1.rs#L12
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>, |
cannot find type `PublicKey` in module `cometbft_proto::crypto`: src/prost/interchain_security.ccv.provider.v1.rs#L1023
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>, |
cannot find type `PublicKey` in module `cometbft_proto::crypto`: src/prost/interchain_security.ccv.provider.v1.rs#L1001
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>, |
cannot find type `DuplicateVoteEvidence` in module `cometbft_proto::types`: src/prost/interchain_security.ccv.provider.v1.rs#L75
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, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L343
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, |
cannot find type `Validator` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L145
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>, |
cannot find type `Validator` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L50
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>, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L11
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, |
cannot find type `ValidatorSet` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L137
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, |
cannot find type `ValidatorSet` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L130
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>, |
cannot find type `SignedHeader` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L128
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>, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.tx.v1beta1.rs#L592
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.tx.v1beta1.rs#L590
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>, |
cannot find type `DefaultNodeInfo` in module `cometbft_proto::p2p`: src/prost/cosmos.base.tendermint.v1beta1.rs#L284
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, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L230
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L227
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>, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L199
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L196
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L39
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>, |
cannot find type `Consensus` in module `cometbft_proto::version`: src/prost/cosmos.base.tendermint.v1beta1.rs#L28
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>, |
cannot find type `Commit` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L13
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>, |
cannot find type `EvidenceList` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L11
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>, |
cannot find type `Data` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L9
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>, |
cannot find type `Event` in module `cometbft_proto::abci`: src/prost/cosmos.base.abci.v1beta1.rs#L150
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>, |
cannot find type `Event` in module `cometbft_proto::abci`: src/prost/cosmos.base.abci.v1beta1.rs#L52
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>, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/cosmos.staking.v1beta1.rs#L480
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>, |
cannot find type `Header` in module `cometbft_proto::types`: src/prost/cosmos.staking.v1beta1.rs#L9
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>, |
clippy_no_default_features
Clippy had exited with the 101 exit code
cannot find type `ProofOps` in module `cometbft_proto::crypto`: src/prost/stride.interchainquery.v1.rs#L12
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>, |
cannot find type `PublicKey` in module `cometbft_proto::crypto`: src/prost/interchain_security.ccv.provider.v1.rs#L1023
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>, |
cannot find type `PublicKey` in module `cometbft_proto::crypto`: src/prost/interchain_security.ccv.provider.v1.rs#L1001
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>, |
cannot find type `DuplicateVoteEvidence` in module `cometbft_proto::types`: src/prost/interchain_security.ccv.provider.v1.rs#L75
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, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L343
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, |
cannot find type `Validator` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L145
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>, |
cannot find type `Validator` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L50
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>, |
cannot find type `ProofOps` in module `cometbft_proto::crypto`: src/prost/stride.interchainquery.v1.rs#L12
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>, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L11
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, |
cannot find type `PublicKey` in module `cometbft_proto::crypto`: src/prost/interchain_security.ccv.provider.v1.rs#L1023
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>, |
cannot find type `PublicKey` in module `cometbft_proto::crypto`: src/prost/interchain_security.ccv.provider.v1.rs#L1001
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>, |
cannot find type `ValidatorSet` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L137
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, |
cannot find type `DuplicateVoteEvidence` in module `cometbft_proto::types`: src/prost/interchain_security.ccv.provider.v1.rs#L75
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, |
cannot find type `ValidatorSet` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L130
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>, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L343
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, |
cannot find type `SignedHeader` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L128
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>, |
cannot find type `Validator` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L145
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>, |
cannot find type `Validator` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L50
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>, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.tx.v1beta1.rs#L592
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.tx.v1beta1.rs#L590
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>, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/interchain_security.ccv.v1.rs#L11
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, |
cannot find type `DefaultNodeInfo` in module `cometbft_proto::p2p`: src/prost/cosmos.base.tendermint.v1beta1.rs#L284
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, |
cannot find type `ValidatorSet` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L137
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, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L230
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>, |
cannot find type `ValidatorSet` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L130
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L227
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>, |
cannot find type `SignedHeader` in module `cometbft_proto::types`: src/prost/ibc.lightclients.tendermint.v1.rs#L128
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>, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L199
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>, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.tx.v1beta1.rs#L592
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L196
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.tx.v1beta1.rs#L590
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L39
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>, |
cannot find type `DefaultNodeInfo` in module `cometbft_proto::p2p`: src/prost/cosmos.base.tendermint.v1beta1.rs#L284
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, |
cannot find type `Consensus` in module `cometbft_proto::version`: src/prost/cosmos.base.tendermint.v1beta1.rs#L28
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>, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L230
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L227
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>, |
cannot find type `Commit` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L13
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>, |
cannot find type `Block` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L199
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>, |
cannot find type `EvidenceList` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L11
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L196
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>, |
cannot find type `Data` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L9
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>, |
cannot find type `BlockId` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L39
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>, |
cannot find type `Event` in module `cometbft_proto::abci`: src/prost/cosmos.base.abci.v1beta1.rs#L150
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>, |
cannot find type `Consensus` in module `cometbft_proto::version`: src/prost/cosmos.base.tendermint.v1beta1.rs#L28
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>, |
cannot find type `Event` in module `cometbft_proto::abci`: src/prost/cosmos.base.abci.v1beta1.rs#L52
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>, |
cannot find type `Commit` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L13
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>, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/cosmos.staking.v1beta1.rs#L480
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>, |
cannot find type `EvidenceList` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L11
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>, |
cannot find type `Header` in module `cometbft_proto::types`: src/prost/cosmos.staking.v1beta1.rs#L9
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>, |
cannot find type `Data` in module `cometbft_proto::types`: src/prost/cosmos.base.tendermint.v1beta1.rs#L9
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>, |
cannot find type `Event` in module `cometbft_proto::abci`: src/prost/cosmos.base.abci.v1beta1.rs#L150
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>, |
cannot find type `Event` in module `cometbft_proto::abci`: src/prost/cosmos.base.abci.v1beta1.rs#L52
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>, |
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`: src/prost/cosmos.staking.v1beta1.rs#L480
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>, |
cannot find type `Header` in module `cometbft_proto::types`: src/prost/cosmos.staking.v1beta1.rs#L9
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>, |
clippy_all_features
Clippy had exited with the 101 exit code
publish-dry-run: src/prost/cosmos.staking.v1beta1.rs#L9
cannot find type `Header` in module `cometbft_proto::types`
publish-dry-run: src/prost/cosmos.staking.v1beta1.rs#L480
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`
publish-dry-run: src/prost/cosmos.base.abci.v1beta1.rs#L52
cannot find type `Event` in module `cometbft_proto::abci`
publish-dry-run: src/prost/cosmos.base.abci.v1beta1.rs#L150
cannot find type `Event` in module `cometbft_proto::abci`
publish-dry-run: src/prost/cosmos.base.tendermint.v1beta1.rs#L9
cannot find type `Data` in module `cometbft_proto::types`
publish-dry-run: src/prost/cosmos.base.tendermint.v1beta1.rs#L11
cannot find type `EvidenceList` in module `cometbft_proto::types`
publish-dry-run: src/prost/cosmos.base.tendermint.v1beta1.rs#L13
cannot find type `Commit` in module `cometbft_proto::types`
publish-dry-run: src/prost/cosmos.base.tendermint.v1beta1.rs#L28
cannot find type `Consensus` in module `cometbft_proto::version`
publish-dry-run: src/prost/cosmos.base.tendermint.v1beta1.rs#L39
cannot find type `BlockId` in module `cometbft_proto::types`
publish-dry-run: src/prost/cosmos.base.tendermint.v1beta1.rs#L196
cannot find type `BlockId` in module `cometbft_proto::types`
test-stable: src/prost/cosmos.staking.v1beta1.rs#L9
cannot find type `Header` in module `cometbft_proto::types`
test-stable: src/prost/cosmos.staking.v1beta1.rs#L480
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`
test-stable: src/prost/cosmos.base.abci.v1beta1.rs#L52
cannot find type `Event` in module `cometbft_proto::abci`
test-stable: src/prost/cosmos.base.abci.v1beta1.rs#L150
cannot find type `Event` in module `cometbft_proto::abci`
test-stable: src/prost/cosmos.base.tendermint.v1beta1.rs#L9
cannot find type `Data` in module `cometbft_proto::types`
test-stable: src/prost/cosmos.base.tendermint.v1beta1.rs#L11
cannot find type `EvidenceList` in module `cometbft_proto::types`
test-stable: src/prost/cosmos.base.tendermint.v1beta1.rs#L13
cannot find type `Commit` in module `cometbft_proto::types`
test-stable: src/prost/cosmos.base.tendermint.v1beta1.rs#L28
cannot find type `Consensus` in module `cometbft_proto::version`
test-stable: src/prost/cosmos.base.tendermint.v1beta1.rs#L39
cannot find type `BlockId` in module `cometbft_proto::types`
test-stable: src/prost/cosmos.base.tendermint.v1beta1.rs#L196
cannot find type `BlockId` in module `cometbft_proto::types`
doc: src/prost/cosmos.staking.v1beta1.rs#L9
cannot find type `Header` in module `cometbft_proto::types`
doc: src/prost/cosmos.staking.v1beta1.rs#L480
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`
doc: src/prost/cosmos.base.abci.v1beta1.rs#L52
cannot find type `Event` in module `cometbft_proto::abci`
doc: src/prost/cosmos.base.abci.v1beta1.rs#L150
cannot find type `Event` in module `cometbft_proto::abci`
doc: src/prost/cosmos.base.tendermint.v1beta1.rs#L9
cannot find type `Data` in module `cometbft_proto::types`
doc: src/prost/cosmos.base.tendermint.v1beta1.rs#L11
cannot find type `EvidenceList` in module `cometbft_proto::types`
doc: src/prost/cosmos.base.tendermint.v1beta1.rs#L13
cannot find type `Commit` in module `cometbft_proto::types`
doc: src/prost/cosmos.base.tendermint.v1beta1.rs#L28
cannot find type `Consensus` in module `cometbft_proto::version`
doc: src/prost/cosmos.base.tendermint.v1beta1.rs#L39
cannot find type `BlockId` in module `cometbft_proto::types`
doc: src/prost/cosmos.base.tendermint.v1beta1.rs#L196
cannot find type `BlockId` in module `cometbft_proto::types`
test-build: src/prost/cosmos.staking.v1beta1.rs#L9
cannot find type `Header` in module `cometbft_proto::types`
test-build: src/prost/cosmos.staking.v1beta1.rs#L480
cannot find type `ValidatorUpdate` in module `cometbft_proto::abci`
test-build: src/prost/cosmos.base.abci.v1beta1.rs#L52
cannot find type `Event` in module `cometbft_proto::abci`
test-build: src/prost/cosmos.base.abci.v1beta1.rs#L150
cannot find type `Event` in module `cometbft_proto::abci`
test-build: src/prost/cosmos.base.tendermint.v1beta1.rs#L9
cannot find type `Data` in module `cometbft_proto::types`
test-build: src/prost/cosmos.base.tendermint.v1beta1.rs#L11
cannot find type `EvidenceList` in module `cometbft_proto::types`
test-build: src/prost/cosmos.base.tendermint.v1beta1.rs#L13
cannot find type `Commit` in module `cometbft_proto::types`
test-build: src/prost/cosmos.base.tendermint.v1beta1.rs#L28
cannot find type `Consensus` in module `cometbft_proto::version`
test-build: src/prost/cosmos.base.tendermint.v1beta1.rs#L39
cannot find type `BlockId` in module `cometbft_proto::types`
test-build: src/prost/cosmos.base.tendermint.v1beta1.rs#L196
cannot find type `BlockId` in module `cometbft_proto::types`
check_features_powerset
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
check_features_powerset
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
check_features_powerset
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check_features_powerset
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check_features_powerset
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check_features_powerset
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check_features_powerset
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check_features_powerset
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check_features_powerset
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check_features_powerset
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
fmt
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
fmt
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_no_default_features
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
clippy_no_default_features
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
clippy_no_default_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_no_default_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_no_default_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_no_default_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_no_default_features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_no_default_features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_no_default_features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_no_default_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_all_features
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
clippy_all_features
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
clippy_all_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_all_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_all_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_all_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_all_features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_all_features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_all_features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_all_features
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
publish-dry-run
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
publish-dry-run
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
test-stable
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
test-stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
doc
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
doc
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
test-build
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
test-build
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/