8000 feat!: add support for CometBFT v0_34, v0_37 and v0_38 · cometbft/cometbft-rs@ee64b35 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat!: add support for CometBFT v0_34, v0_37 and v0_38 #120

feat!: add support for CometBFT v0_34, v0_37 and v0_38

feat!: add support for CometBFT v0_34, v0_37 and v0_38 #120

Triggered via pull request May 8, 2025 06:27
Status Failure
Total duration 1m 41s
Artifacts

build.yml

on: pull_request
cleanup-runs
9s
cleanup-runs
build-all
47s
build-all
build-light-client-wasm
34s
build-light-client-wasm
tools
1m 1s
tools
generated-protos-compile
1m 37s
generated-protos-compile
Fit to window
Zoom out
Zoom in

Annotations

418 errors
build-light-client-wasm
Process completed with exit code 101.
[clippy] cometbft/src/abci/request/apply_snapshot_chunk.rs#L50: cometbft/src/abci/request/apply_snapshot_chunk.rs#L50
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/apply_snapshot_chunk.rs:50:24 | 50 | chunk: apply_snapshot_chunk.chunk, | ^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/check_tx.rs#L44: cometbft/src/abci/request/check_tx.rs#L44
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/check_tx.rs:44:21 | 44 | tx: check_tx.tx, | ^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/check_tx.rs#L60: cometbft/src/abci/request/check_tx.rs#L60
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/check_tx.rs:60:21 | 60 | tx: check_tx.tx, | ^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 60 | tx: check_tx.tx.into(), | +++++++
[clippy] cometbft/src/abci/request/deliver_tx.rs#L23: cometbft/src/abci/request/deliver_tx.rs#L23
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/deliver_tx.rs:23:24 | 23 | Self { tx: deliver_tx.tx } | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/deliver_tx.rs#L31: cometbft/src/abci/request/deliver_tx.rs#L31
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/deliver_tx.rs:31:27 | 31 | Ok(Self { tx: deliver_tx.tx }) | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 31 | Ok(Self { tx: deliver_tx.tx.into() }) | +++++++
[clippy] cometbft/src/abci/request/deliver_tx.rs#L45: cometbft/src/abci/request/deliver_tx.rs#L45
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/deliver_tx.rs:45:24 | 45 | Self { tx: deliver_tx.tx } | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/deliver_tx.rs#L53: cometbft/src/abci/request/deliver_tx.rs#L53
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/deliver_tx.rs:53:27 | 53 | Ok(Self { tx: deliver_tx.tx }) | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 53 | Ok(Self { tx: deliver_tx.tx.into() }) | +++++++
[clippy] cometbft/src/abci/request/extend_vote.rs#L36: cometbft/src/abci/request/extend_vote.rs#L36
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/extend_vote.rs:36:22 | 36 | txs: extend_vote.txs, | ^^^^^^^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/extend_vote.rs#L60: cometbft/src/abci/request/extend_vote.rs#L60
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/extend_vote.rs:60:22 | 60 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/finalize_block.rs#L45: cometbft/src/abci/request/finalize_block.rs#L45
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/finalize_block.rs:45:22 | 45 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/finalize_block.rs#L62: cometbft/src/abci/request/finalize_block.rs#L62
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/finalize_block.rs:62:22 | 62 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/init_chain.rs#L39: cometbft/src/abci/request/init_chain.rs#L39
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:39:34 | 39 | app_state_bytes: init_chain.app_state_bytes, | ^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:67 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L64: cometbft/src/abci/request/init_chain.rs#L64
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:64:34 | 64 | app_state_bytes: init_chain.app_state_bytes, | ^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 64 | app_state_bytes: init_chain.app_state_bytes.into(), | +++++++
[clippy] cometbft/src/abci/request/init_chain.rs#L62: cometbft/src/abci/request/init_chain.rs#L62
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:62:26 | 62 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-6612215208005158603.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
10000
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:67 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L62: cometbft/src/abci/request/init_chain.rs#L62
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:62:26 | 62 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-5983198012000675229.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:38:67 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L62: cometbft/src/abci/request/init_chain.rs#L62
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/init_chain.rs:62:26 | 62 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-3161198391456884896.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/request/prepare_proposal.rs#L40: cometbft/src/abci/request/prepare_proposal.rs#L40
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/prepare_proposal.rs:40:22 | 40 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/prepare_proposal.rs#L57: cometbft/src/abci/request/prepare_proposal.rs#L57
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/prepare_proposal.rs:57:22 | 57 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/prepare_proposal.rs#L92: cometbft/src/abci/request/prepare_proposal.rs#L92
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/prepare_proposal.rs:92:22 | 92 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/prepare_proposal.rs#L109: cometbft/src/abci/request/prepare_proposal.rs#L109
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/prepare_proposal.rs:109:22 | 109 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/process_proposal.rs#L38: cometbft/src/abci/request/process_proposal.rs#L38
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/process_proposal.rs:38:22 | 38 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/process_proposal.rs#L55: cometbft/src/abci/request/process_proposal.rs#L55
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/process_proposal.rs:55:22 | 55 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/process_proposal.rs#L90: cometbft/src/abci/request/process_proposal.rs#L90
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/process_proposal.rs:90:22 | 90 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/process_proposal.rs#L107: cometbft/src/abci/request/process_proposal.rs#L107
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/process_proposal.rs:107:22 | 107 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/query.rs#L41: cometbft/src/abci/request/query.rs#L41
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/query.rs:41:23 | 41 | data: query.data, | ^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/query.rs#L54: cometbft/src/abci/request/query.rs#L54
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/query.rs:54:23 | 54 | data: query.data, | ^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 54 | data: query.data.into(), | +++++++
[clippy] cometbft/src/abci/request/verify_vote_extension.rs#L28: cometbft/src/abci/request/verify_vote_extension.rs#L28
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/verify_vote_extension.rs:28:33 | 28 | vote_extension: value.vote_extension, | ^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/verify_vote_extension.rs#L41: cometbft/src/abci/request/verify_vote_extension.rs#L41
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/request/verify_vote_extension.rs:41:33 | 41 | vote_extension: message.vote_extension, | ^^^^^^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 41 | vote_extension: message.vote_extension.into(), | +++++++
[clippy] cometbft/src/abci/response/begin_block.rs#L25: cometbft/src/abci/response/begin_block.rs#L25
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/begin_block.rs:25:25 | 25 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L25: cometbft/src/abci/response/begin_block.rs#L25
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/begin_block.rs:25:25 | 25 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L25: cometbft/src/abci/response/begin_block.rs#L25
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/begin_block.rs:25:60 | 25 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L38: cometbft/src/abci/response/begin_block.rs#L38
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_34::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/begin_block.rs:38:26 | 38 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::Event>` = note: required for `cometbft_proto::v0_34::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-13389148222414785624.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/begin_block.rs#L55: cometbft/src/abci/response/begin_block.rs#L55
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/begin_block.rs:55:25 | 55 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L55: cometbft/src/abci/response/begin_block.rs#L55
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/begin_block.rs:55:25 | 55 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L55: cometbft/src/abci/response/begin_block.rs#L55
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/begin_block.rs:55:60 | 55 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L68: cometbft/src/abci/response/begin_block.rs#L68
10000
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_37::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/begin_block.rs:68:26 | 68 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::Event>` = note: required for `cometbft_proto::v0_37::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-11254775515783130630.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/check_tx.rs#L63: cometbft/src/abci/response/check_tx.rs#L63
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:63:23 | 63 | data: check_tx.data, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/check_tx.rs#L68: cometbft/src/abci/response/check_tx.rs#L68
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:68:25 | 68 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L68: cometbft/src/abci/response/check_tx.rs#L68
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:68:25 | 68 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L68: cometbft/src/abci/response/check_tx.rs#L68
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:68:57 | 68 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L83: cometbft/src/abci/response/check_tx.rs#L83
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:83:23 | 83 | data: check_tx.data, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 83 | data: check_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/check_tx.rs#L91: cometbft/src/abci/response/check_tx.rs#L91
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_34::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:91:26 | 91 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::Event>` = note: required for `cometbft_proto::v0_34::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-13389148222414785624.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/check_tx.rs#L113: cometbft/src/abci/response/check_tx.rs#L113
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:113:23 | 113 | data: check_tx.data, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/check_tx.rs#L118: cometbft/src/abci/response/check_tx.rs#L118
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:118:25 | 118 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L118: cometbft/src/abci/response/check_tx.rs#L118
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:118:25 | 118 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L118: cometbft/src/abci/response/check_tx.rs#L118
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:118:57 | 118 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L133: cometbft/src/abci/response/check_tx.rs#L133
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:133:23 | 133 | data: check_tx.data, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 133 | data: check_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/check_tx.rs#L141: cometbft/src/abci/response/check_tx.rs#L141
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_37::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:141:26 | 141 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::Event>` = note: required for `cometbft_proto::v0_37::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-11254775515783130630.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/check_tx.rs#L163: cometbft/src/abci/response/check_tx.rs#L163
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:163:23 | 163 | data: check_tx.data, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/check_tx.rs#L168: cometbft/src/abci/response/check_tx.rs#L168
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:168:25 | 168 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L168: cometbft/src/abci/response/check_tx.rs#L168
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:168:25 | 168 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L168: cometbft/src/abci/response/check_tx.rs#L168
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:168:57 | 168 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L180: cometbft/src/abci/response/check_tx.rs#L180
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:180:23 | 180 | data: check_tx.data, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 180 | data: check_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/check_tx.rs#L188: cometbft/src/abci/response/check_tx.rs#L188
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_38::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/check_tx.rs:188:26 | 188 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::Event>` = note: required for `cometbft_proto::v0_38::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-290603262689414049.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/commit.rs#L27: cometbft/src/abci/response/commit.rs#L27
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/commit.rs:27:23 | 27 | data: commit.data, | ^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/commit.rs#L38: cometbft/src/abci/response/commit.rs#L38
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/commit.rs:38:23 | 38 | data: commit.data, | ^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 38 | data: commit.data.into(), | +++++++
[clippy] cometbft/src/abci/response/commit.rs#L55: cometbft/src/abci/response/commit.rs#L55
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/commit.rs:55:23 | 55 | data: commit.data, | ^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/commit.rs#L66: cometbft/src/abci/response/commit.rs#L66
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/commit.rs:66:23 | 66 | data: commit.data, | ^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 66 | data: commit.data.into(), | +++++++
[clippy] cometbft/src/abci/response/deliver_tx.rs#L49: cometbft/src/abci/response/deliver_tx.rs#L49
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:49:23 | 49 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L54: cometbft/src/abci/response/deliver_tx.rs#L54
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:54:25 | 54 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L54: cometbft/src/abci/response/deliver_tx.rs#L54
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:54:25 | 54 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `cor EDBE e::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L54: cometbft/src/abci/response/deliver_tx.rs#L54
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:54:59 | 54 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L66: cometbft/src/abci/response/deliver_tx.rs#L66
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:66:23 | 66 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 66 | data: deliver_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/deliver_tx.rs#L74: cometbft/src/abci/response/deliver_tx.rs#L74
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_34::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:74:26 | 74 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::Event>` = note: required for `cometbft_proto::v0_34::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-13389148222414785624.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/deliver_tx.rs#L93: cometbft/src/abci/response/deliver_tx.rs#L93
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:93:23 | 93 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L98: cometbft/src/abci/response/deliver_tx.rs#L98
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:98:25 | 98 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L98: cometbft/src/abci/response/deliver_tx.rs#L98
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:98:25 | 98 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L98: cometbft/src/abci/response/deliver_tx.rs#L98
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:98:59 | 98 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L110: cometbft/src/abci/response/deliver_tx.rs#L110
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:110:23 | 110 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 110 | data: deliver_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/deliver_tx.rs#L118: cometbft/src/abci/response/deliver_tx.rs#L118
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_37::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/deliver_tx.rs:118:26 | 118 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::Event>` = note: required for `cometbft_proto::v0_37::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-11254775515783130630.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/end_block.rs#L32: cometbft/src/abci/response/end_block.rs#L32
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:32:36 | 32 | validator_updates: end_block | ____________________________________^ 33 | | .validator_updates 34 | | .into_iter() 35 | | .map(Into::into) 36 | | .collect(), | |______________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L32: cometbft/src/abci/response/end_block.rs#L32
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:32:36 | 32 | validator_updates: end_block | ____________________________________^ 33 | | .validator_updates 34 | | .into_iter() 35 | | .map(Into::into) | |____________________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L35: cometbft/src/abci/response/end_block.rs#L35
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:35:26 | 35 | .map(Into::into) | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L38: cometbft/src/abci/response/end_block.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:38:25 | 38 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L38: cometbft/src/abci/response/end_block.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:38:25 | 38 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L38: cometbft/src/abci/response/end_block.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:38:58 | 38 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L51: cometbft/src/abci/response/end_block.rs#L51
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:51:26 | 51 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-6612215208005158603.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/end_block.rs#L60: cometbft/src/abci/response/end_block.rs#L60
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_34::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:60:26 | 60 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::Event>` = note: required for `cometbft_proto::v0_34::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-13389148222414785624.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/end_block.rs#L77: cometbft/src/abci/response/end_block.rs#L77
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:77:36 | 77 | validator_updates: end_block | ____________________________________^ 78 | | .validator_updates 79 | | .into_iter() 80 | | .map(Into::into) 81 | | .collect(), | |______________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L77: cometbft/src/abci/response/end_block.rs#L77
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:77:36 | 77 | validator_updates: end_block | ____________________________________^ 78 | | .validator_updates 79 | | .into_iter() 80 | | .map(Into::into) | |____________________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L80: cometbft/src/abci/response/end_block.rs#L80
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:80:26 | 80 | .map(Into::into) | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L83: cometbft/src/abci/response/end_block.rs#L83
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:83:25 | 83 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L83: cometbft/src/abci/response/end_block.rs#L83
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:83:25 | 83 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
1E0A [clippy] cometbft/src/abci/response/end_block.rs#L83: cometbft/src/abci/response/end_block.rs#L83
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:83:58 | 83 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L96: cometbft/src/abci/response/end_block.rs#L96
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:96:26 | 96 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-5983198012000675229.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/end_block.rs#L105: cometbft/src/abci/response/end_block.rs#L105
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_37::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/end_block.rs:105:26 | 105 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::Event>` = note: required for `cometbft_proto::v0_37::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-11254775515783130630.txt' = note F438 : consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/extend_vote.rs#L21: cometbft/src/abci/response/extend_vote.rs#L21
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/extend_vote.rs:21:33 | 21 | vote_extension: value.vote_extension, | ^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/extend_vote.rs#L31: cometbft/src/abci/response/extend_vote.rs#L31
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/extend_vote.rs:31:33 | 31 | vote_extension: message.vote_extension, | ^^^^^^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 31 | vote_extension: message.vote_extension.into(), | +++++++
[clippy] cometbft/src/abci/response/finalize_block.rs#L40: cometbft/src/abci/response/finalize_block.rs#L40
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/finalize_block.rs:40:25 | 40 | events: value.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L40: cometbft/src/abci/response/finalize_block.rs#L40
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/finalize_block.rs:40:25 | 40 | events: value.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L40: cometbft/src/abci/response/finalize_block.rs#L40
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/finalize_block.rs:40:54 | 40 | events: value.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L42: cometbft/src/abci/response/finalize_block.rs#L42
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/finalize_block.rs:42:36 | 42 | validator_updates: value | ____________________________________^ 43 | | .validator_updates 44 | | .into_iter() 45 | | .map(Into::into) 46 | | .collect(), | |______________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L42: cometbft/src/abci/response/finalize_block.rs#L42
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/finalize_block.rs:42:36 | 42 | validator_updates: value | ____________________________________^ 43 | | .validator_updates 44 | | .into_iter() 45 | | .map(Into::into) | |____________________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L45: cometbft/src/abci/response/finalize_block.rs#L45
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/finalize_block.rs:45:26 | 45 | .map(Into::into) | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L61: cometbft/src/abci/response/finalize_block.rs#L61
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_38::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/finalize_block.rs:61:26 | 61 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::Event>` = note: required for `cometbft_proto::v0_38::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-290603262689414049.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/finalize_block.rs#L71: cometbft/src/abci/response/finalize_block.rs#L71
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/finalize_block.rs:71:26 | 71 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-3161198391456884896.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:67 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L52: cometbft/src/abci/response/init_chain.rs#L52
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:52:26 | 52 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-6612215208005158603.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:67 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L52: cometbft/src/abci/response/init_chain.rs#L52
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:52:26 | 52 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-5983198012000675229.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:34:67 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L52: cometbft/src/abci/response/init_chain.rs#L52
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/init_chain.rs:52:26 | 52 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-3161198391456884896.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/load_snapshot_chunk.rs#L25: cometbft/src/abci/response/load_snapshot_chunk.rs#L25
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/load_snapshot_chunk.rs:25:24 | 25 | chunk: load_snapshot_chunk.chunk, | ^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/load_snapshot_chunk.rs#L35: cometbft/src/abci/response/load_snapshot_chunk.rs#L35
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/load_snapshot_chunk.rs:35:24 | 35 | chunk: load_snapshot_chunk.chunk, | ^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 35 | chunk: load_snapshot_chunk.chunk.into(), | +++++++
[clippy] cometbft/src/abci/response/prepare_proposal.rs#L22: cometbft/src/abci/response/prepare_proposal.rs#L22
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/prepare_proposal.rs:22:25 | 22 | Self { txs: value.txs } | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/response/prepare_proposal.rs#L30: cometbft/src/abci/response/prepare_proposal.rs#L30
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/prepare_proposal.rs:30:28 | 30 | Ok(Self { txs: message.txs }) | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/response/prepare_proposal.rs#L44: cometbft/src/abci/response/prepare_proposal.rs#L44
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/prepare_proposal.rs:44:25 | 44 | Self { txs: value.txs } | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/response/prepare_proposal.rs#L52: cometbft/src/abci/response/prepare_proposal.rs#L52
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/prepare_proposal.rs:52:28 | 52 | Ok(Self { txs: message.txs }) | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/response/query.rs#L53: cometbft/src/abci/response/query.rs#L53
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/query.rs:53:22 | 53 | key: query.key, | ^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/query.rs#L54: cometbft/src/abci/response/query.rs#L54
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/query.rs:54:24 | 54 | value: query.value, | ^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/query.rs#L71: cometbft/src/abci/response/query.rs#L71
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/query.rs:71:22 | 71 | key: query.key, | ^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 71 | key: query.key.into(), | +++++++
[clippy] cometbft/src/abci/response/query.rs#L72: cometbft/src/abci/response/query.rs#L72
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/response/query.rs:72:24 | 72 | value: query.value, | ^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 72 | value: query.value.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L258: cometbft/src/abci/types.rs#L258
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:258:26 | 258 | address: Bytes::copy_from_slice(&v.address[..]), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L388: cometbft/src/abci/types.rs#L388
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:388:23 | 388 | hash: snapshot.hash, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L389: cometbft/src/abci/types.rs#L389
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:389:27 | 389 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L402: cometbft/src/abci/types.rs#L402
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:402:23 | 402 | hash: snapshot.hash, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 402 | hash: snapshot.hash.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L403: cometbft/src/abci/types.rs#L403
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:403:27 | 403 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 403 | metadata: snapshot.metadata.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L425: cometbft/src/abci/types.rs#L425
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:425:26 | 425 | address: Bytes::copy_from_slice(&v.address[..]), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L617: cometbft/src/abci/types.rs#L617
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:617:23 | 617 | hash: snapshot.hash, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L618: cometbft/src/abci/types.rs#L618
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:618:27 | 618 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L631: cometbft/src/abci/types.rs#L631
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:631:23 | 631 | hash: snapshot.hash, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 631 | hash: snapshot.hash.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L632: cometbft/src/abci/types.rs#L632
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:632:27 | 632 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 632 | metadata: snapshot.metadata.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L655: cometbft/src/abci/types.rs#L655
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:655:26 | 655 | address: Bytes::copy_from_slice(&v.address[..]), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L729: cometbft/src/abci/types.rs#L729
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:729:33 | 729 | vote_extension: vi.vote_extension, | ^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L750: cometbft/src/abci/types.rs#L750
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:750:33 | 750 | vote_extension: vi.vote_extension, | ^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 750 | vote_extension: vi.vote_extension.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L857: cometbft/src/abci/types.rs#L857
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:857:23 | 857 | hash: snapshot.hash, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L858: cometbft/src/abci/types.rs#L858
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:858:27 | 858 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L871: cometbft/src/abci/types.rs#L871
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:871:23 | 871 | hash: snapshot.hash, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 871 | hash: snapshot.hash.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L872: cometbft/src/abci/types.rs#L872
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:872:27 | 872 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 872 | metadata: snapshot.metadata.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L883: cometbft/src/abci/types.rs#L883
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:883:23 | 883 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L888: cometbft/src/abci/types.rs#L888
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:888:25 | 888 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/types.rs#L888: cometbft/src/abci/types.rs#L888
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:888:25 | 888 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/types.rs#L888: cometbft/src/abci/types.rs#L888
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<event::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:888:59 | 888 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/types.rs#L900: cometbft/src/abci/types.rs#L900
error[E0308]: mismatched types --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:900:23 | 900 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 900 | data: deliver_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L908: cometbft/src/abci/types.rs#L908
error[E0277]: the trait bound `event::Event: core::convert::From<cometbft_proto::v0_38::abci::Event>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/types.rs:908:26 | 908 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::Event>` is not implemented for `event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::Into<event::Event>` = note: required for `event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::Event>` = note: required for `cometbft_proto::v0_38::abci::Event` to implement `TryInto<event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-290603262689414049.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/v0_34/request.rs#L224: cometbft/src/abci/v0_34/request.rs#L224
error[E0277]: the trait bound `RequestSetOption: From<SetOption>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/v0_34/request.rs:224:62 | 224 | Request::SetOption(x) => Some(Value::SetOption(x.into())), | ^^^^ the trait `core::convert::From<abci::request::set_option::SetOption>` is not implemented for `cometbft_proto::v0_34::abci::RequestSetOption` | = note: required for `abci::request::set_option::SetOption` to implement `core::convert::Into<cometbft_proto::v0_34::abci::RequestSetOption>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-2397590368592550529.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/v0_34/request.rs#L250: cometbft/src/abci/v0_34/request.rs#L250
error[E0277]: the trait bound `SetOption: TryFrom<RequestSetOption>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/v0_34/request.rs:250:66 | 250 | Some(Value::SetOption(x)) => Ok(Request::SetOption(x.try_into()?)), | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::RequestSetOption>` is not implemented for `abci::request::set_option::SetOption` | = note: required for `cometbft_proto::v0_34::abci::RequestSetOption` to implement `core::convert::Into<abci::request::set_option::SetOption>` = note: required for `abci::request::set_option::SetOption` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::RequestSetOption>` = note: required for `cometbft_proto::v0_34::abci::RequestSetOption` to implement `TryInto<abci::request::set_option::SetOption>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-8472735449039259115.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/v0_34/response.rs#L199: cometbft/src/abci/v0_34/response.rs#L199
error[E0277]: the trait bound `ResponseSetOption: From<SetOption>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/v0_34/response.rs:199:63 | 199 | Response::SetOption(x) => Some(Value::SetOption(x.into())), | ^^^^ unsatisfied trait bound | = help: the trait `core::convert::From<abci::response::set_option::SetOption>` is not implemented for `cometbft_proto::v0_34::abci::ResponseSetOption` = note: required for `abci::response::set_option::SetOption` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ResponseSetOption>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-9827690122354385952.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/v0_34/response.rs#L226: cometbft/src/abci/v0_34/response.rs#L226
error[E0277]: the trait bound `SetOption: TryFrom<ResponseSetOption>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/abci/v0_34/response.rs:226:67 | 226 | Some(Value::SetOption(x)) => Ok(Response::SetOption(x.try_into()?)), | ^^^^^^^^ unsatisfied trait bound | = help: the trait `core::convert::From<cometbft_proto::v0_34::abci::ResponseSetOption>` is not implemented for `abci::response::set_option::SetOption` = note: required for `cometbft_proto::v0_34::abci::ResponseSetOption` to implement `core::convert::Into<abci::response::set_option::SetOption>` = note: required for `abci::response::set_option::SetOption` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::ResponseSetOption>` = note: required for `cometbft_proto::v0_34::abci::ResponseSetOption` to implement `TryInto<abci::response::set_option::SetOption>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-12555521176210156281.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/consensus/params.rs#L102: cometbft/src/consensus/params.rs#L102
error[E0277]: the trait bound `evidence::Params: core::convert::TryFrom<cometbft_proto::v0_34::types::EvidenceParams>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/consensus/params.rs:102:22 | 102 | .try_into()?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::EvidenceParams>` is not implemented for `evidence::Params` | = note: required for `cometbft_proto::v0_34::types::EvidenceParams` to implement `core::convert::Into<evidence::Params>` = note: required for `evidence::Params` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::EvidenceParams>` = note: required for `cometbft_proto::v0_34::types::EvidenceParams` to implement `TryInto<evidence::Params>`
[clippy] cometbft/src/consensus/params.rs#L117: cometbft/src/consensus/params.rs#L117
error[E0277]: the trait bound `cometbft_proto::v0_34::types::EvidenceParams: core::convert::From<evidence::Params>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/consensus/params.rs:117:47 | 117 | evidence: Some(value.evidence.into()), | ^^^^ the trait `core::convert::From<evidence::Params>` is not implemented for `cometbft_proto::v0_34::types::EvidenceParams` | = note: required for `evidence::Params` to implement `core::convert::Into<cometbft_proto::v0_34::types::EvidenceParams>`
[clippy] cometbft/src/consensus/params.rs#L138: cometbft/src/consensus/params.rs#L138
error[E0277]: the trait bound `evidence::Params: core::convert::TryFrom<cometbft_proto::v0_34::types::EvidenceParams>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/consensus/params.rs:138:22 | 138 | .try_into()?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::EvidenceParams>` is not implemented for `evidence::Params` | = note: required for `cometbft_proto::v0_34::types::EvidenceParams` to implement `core::convert::Into<evidence::Params>` = note: required for `evidence::Params` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::EvidenceParams>` = note: required for `cometbft_proto::v0_34::types::EvidenceParams` to implement `TryInto<evidence::Params>`
[clippy] cometbft/src/consensus/params.rs#L153: cometbft/src/consensus/params.rs#L153
error[E0277]: the trait bound `cometbft_proto::v0_34::types::EvidenceParams: core::convert::From<evidence::Params>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/consensus/params.rs:153:47 | 153 | evidence: Some(value.evidence.into()), | ^^^^ the trait `core::convert::From<evidence::Params>` is not implemented for `cometbft_proto::v0_34::types::EvidenceParams` | = note: required for `evidence::Params` to implement `core::convert::Into<cometbft_proto::v0_34::types::EvidenceParams>`
[clippy] cometbft/src/consensus/params.rs#L232: cometbft/src/consensus/params.rs#L232
error[E0277]: the trait bound `evidence::Params: core::convert::TryFrom<cometbft_proto::v0_37::types::EvidenceParams>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/consensus/params.rs:232:22 | 232 | .try_into()?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::types::EvidenceParams>` is not implemented for `evidence::Params` | = note: required for `cometbft_proto::v0_37::types::EvidenceParams` to implement `core::convert::Into<evidence::Params>` = note: required for `evidence::Params` to implement `core::convert::TryFrom<cometbft_proto::v0_37::types::EvidenceParams>` = note: required for `cometbft_proto::v0_37::types::EvidenceParams` to implement `TryInto<evidence::Params>`
[clippy] cometbft/src/consensus/params.rs#L247: cometbft/src/consensus/params.rs#L247
error[E0277]: the trait bound `cometbft_proto::v0_37::types::EvidenceParams: core::convert::From<evidence::Params>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/consensus/params.rs:247:47 | 247 | evidence: Some(value.evidence.into()), | ^^^^ the trait `core::convert::From<evidence::Params>` is not implemented for `cometbft_proto::v0_37::types::EvidenceParams` | = note: required for `evidence::Params` to implement `core::convert::Into<cometbft_proto::v0_37::types::EvidenceParams>`
[clippy] cometbft/src/consensus/params.rs#L322: cometbft/src/consensus/params.rs#L322
error[E0277]: the trait bound `evidence::Params: core::convert::TryFrom<cometbft_proto::v0_38::types::EvidenceParams>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/consensus/params.rs:322:22 | 322 | .try_into()?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::types::EvidenceParams>` is not implemented for `evidence::Params` | = note: required for `cometbft_proto::v0_38::types::EvidenceParams` to implement `core::convert::Into<evidence::Params>` = note: required for `evidence::Params` to implement `core::convert::TryFrom<cometbft_proto::v0_38::types::EvidenceParams>` = note: required for `cometbft_proto::v0_38::types::EvidenceParams` to implement `TryInto<evidence::Params>`
[clippy] cometbft/src/consensus/params.rs#L341: cometbft/src/consensus/params.rs#L341
error[E0277]: the trait bound `cometbft_proto::v0_38::types::EvidenceParams: core::convert::From<evidence::Params>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/consensus/params.rs:341:47 | 341 | evidence: Some(value.evidence.into()), | ^^^^ the trait `core::convert::From<evidence::Params>` is not implemented for `cometbft_proto::v0_38::types::EvidenceParams` | = note: required for `evidence::Params` to implement `core::convert::Into<cometbft_proto::v0_38::types::EvidenceParams>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::TryFrom<cometbft_proto::v0_34::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_34::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_34::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L73: cometbft/src/proposal/sign_proposal.rs#L73
error[E0277]: the trait bound `cometbft_proto::v0_34::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:73:47 | 73 | proposal: Some(value.proposal.into()), | ^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_34::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L84: cometbft/src/proposal/sign_proposal.rs#L84
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:84:46 | 84 | proposal: value.proposal.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not implemented for `proposal::Proposal` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::Proposal>` = note: required for `cometbft_proto::v0_34::types::Proposal` to implement `TryInto<proposal::Proposal>` = note: required because it appears within the type `fn(Proposal) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-8373551900649414789.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L85: cometbft/src/proposal/sign_proposal.rs#L85
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:85:40 | 85 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_34::privval::RemoteSignerError` to implement `TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-9007515397620384825.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_34::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:93:27 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_34::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_34::types::Proposal: core::convert::From<proposal::Proposal>` is n 57AE ot satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:93:46 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_34::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:94:24 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_34::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-16710851360541435950.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:94:40 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_34::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-16710851360541435950.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::TryFrom<cometbft_proto::v0_37::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_37::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_37::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L73: cometbft/src/proposal/sign_proposal.rs#L73
error[E0277]: the trait bound `cometbft_proto::v0_37::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:73:47 | 73 | proposal: Some(value.proposal.into()), | ^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_37::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L84: cometbft/src/proposal/sign_proposal.rs#L84
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:84:46 | 84 | proposal: value.proposal.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not implemented for `proposal::Proposal` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_37::types::Proposal>` = note: required for `cometbft_proto::v0_37::types::Proposal` to implement `TryInto<proposal::Proposal>` = note: required because it appears within the type `fn(Proposal) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-6340325258503787450.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L85: cometbft/src/proposal/sign_proposal.rs#L85
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:85:40 | 85 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_37::privval::RemoteSignerError` to implement `TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-12567639745717406691.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_37::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:93:27 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_37::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_37::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:93:46 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_37::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:94:24 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_37::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-18444768863152363674.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:94:40 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_37::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-18444768863152363674.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::TryFrom<cometbft_proto::v0_38::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_38::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_38::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L73: cometbft/src/proposal/sign_proposal.rs#L73
error[E0277]: the trait bound `cometbft_proto::v0_38::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:73:47 | 73 | proposal: Some(value.proposal.into()), | ^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_38::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L84: cometbft/src/proposal/sign_proposal.rs#L84
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:84:46 | 84 | proposal: value.proposal.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not implemented for `proposal::Proposal` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_38::types::Proposal>` = note: required for `cometbft_proto::v0_38::types::Proposal` to implement `TryInto<proposal::Proposal>` = note: required because it appears within the type `fn(Proposal) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-25519171090680010.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L85: cometbft/src/proposal/sign_proposal.rs#L85
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:85:40 | 85 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_38::privval::RemoteSignerError` to implement `TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-7532325113665270538.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_38::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:93:27 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_38::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_38::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:93:46 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_38::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:94:24 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_38::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-8174093542558513633.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/proposal/sign_proposal.rs:94:40 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_38::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-8174093542558513633.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L29: cometbft/src/public_key/pub_key_response.rs#L29
error[E0277]: the trait bound `public_key::PublicKey: core::convert::From<cometbft_proto::v0_34::crypto::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:29:44 | 29 | pub_key: value.pub_key.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::crypto::PublicKey>` is not implemented for `public_key::PublicKey` | | | required by a bound introduced by this call | = help: the following other types implement trait `core::convert::From<T>`: `public_key::PublicKey` implements `core::convert::From<ProtobufPublicKeyWrapper>` `public_key::PublicKey` implements `core::convert::From<ed25519_consensus::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<verification_key::VerificationKey>` = note: required for `cometbft_proto::v0_34::crypto::PublicKey` to implement `core::convert::Into<public_key::PublicKey>` = note: required for `public_key::PublicKey` to implement `core::convert::TryFrom<cometbft_proto::v0_34::crypto::PublicKey>` = note: required for `cometbft_proto::v0_34::crypto::PublicKey` to implement `TryInto<public_key::PublicKey>` = note: required because it appears within the type `fn(PublicKey) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-14391355651622331700.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L30: cometbft/src/public_key/pub_key_response.rs#L30
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:30:40 | 30 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_34::privval::RemoteSignerError` to implement `TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-9007515397620384825.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:38:26 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_34::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_34::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:38:44 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_34::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_34::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:39:24 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_34::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-16710851360541435950.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:39:40 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_34::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-16710851360541435950.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L29: cometbft/src/public_key/pub_key_response.rs#L29
error[E0277]: the trait bound `public_key::PublicKey: core::convert::From<cometbft_proto::v0_37::crypto::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:29:44 | 29 | pub_key: value.pub_key.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::crypto::PublicKey>` is not implemented for `public_key::PublicKey` | | | required by a bound introduced by this call | = help: the following other types implement trait `core::convert::From<T>`: `public_key::PublicKey` implements `core::convert::From<ProtobufPublicKeyWrapper>` `public_key::PublicKey` implements `core::convert::From<ed25519_consensus::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<verification_key::VerificationKey>` = note: required for `cometbft_proto::v0_37::crypto::PublicKey` to implement `core::convert::Into<public_key::PublicKey>` = note: required for `public_key::PublicKey` to implement `core::convert::TryFrom<cometbft_proto::v0_37::crypto::PublicKey>` = note: required for `cometbft_proto::v0_37::crypto::PublicKey` to implement `TryInto<public_key::PublicKey>` = note: required because it appears within the type `fn(PublicKey) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-2290165249260415268.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L30: cometbft/src/public_key/pub_key_response.rs#L30
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:30:40 | 30 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_37::privval::RemoteSignerError` to implement `TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-12567639745717406691.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:38:26 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_37::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_37::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:38:44 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_37::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_37::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:39:24 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_37::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-18444768863152363674.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:39:40 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_37::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-18444768863152363674.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L29: cometbft/src/public_key/pub_key_response.rs#L29
error[E0277]: the trait bound `public_key::PublicKey: core::convert::From<cometbft_proto::v0_38::crypto::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:29:44 | 29 | pub_key: value.pub_key.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::crypto::PublicKey>` is not implemented for `public_key::PublicKey` | | | required by a bound introduced by this call | = help: the following other types implement trait `core::convert::From<T>`: `public_key::PublicKey` implements `core::convert::From<ProtobufPublicKeyWrapper>` `public_key::PublicKey` implements `core::convert::From<ed25519_consensus::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<verification_key::VerificationKey>` = note: required for `cometbft_proto::v0_38::crypto::PublicKey` to implement `core::convert::Into<public_key::PublicKey>` = note: required for `public_key::PublicKey` to implement `core::convert::TryFrom<cometbft_proto::v0_38::crypto::PublicKey>` = note: required for `cometbft_proto::v0_38::crypto::PublicKey` to implement `TryInto<public_key::PublicKey>` = note: required because it appears within the type `fn(PublicKey) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-10689485845571389185.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L30: cometbft/src/public_key/pub_key_response.rs#L30
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:30:40 | 30 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_38::privval::RemoteSignerError` to implement `TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-7532325113665270538.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:38:26 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_38::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_38::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:38:44 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_38::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_38::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:39:24 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_38::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-8174093542558513633.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> /home/runner/work/cometbft-rs/cometbft-rs/cometbft/src/public_key/pub_key_response.rs:39:40 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_38::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/tools/target/debug/deps/cometbft-3f2770ff6fd6bbf8.long-type-8174093542558513633.txt' = note: consider using `--verbose` to print the full type name to the console
build-all
Process completed with exit code 101.
tools
Process completed with exit code 101.
[clippy] cometbft/src/abci/request/apply_snapshot_chunk.rs#L50: cometbft/src/abci/request/apply_snapshot_chunk.rs#L50
error[E0308]: mismatched types --> cometbft/src/abci/request/apply_snapshot_chunk.rs:50:24 | 50 | chunk: apply_snapshot_chunk.chunk, | ^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/check_tx.rs#L44: cometbft/src/abci/request/check_tx.rs#L44
error[E0308]: mismatched types --> cometbft/src/abci/request/check_tx.rs:44:21 | 44 | tx: check_tx.tx, | ^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/check_tx.rs#L60: cometbft/src/abci/request/check_tx.rs#L60
error[E0308]: mismatched types --> cometbft/src/abci/request/check_tx.rs:60:21 | 60 | tx: check_tx.tx, | ^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 60 | tx: check_tx.tx.into(), | +++++++
[clippy] cometbft/src/abci/request/deliver_tx.rs#L23: cometbft/src/abci/request/deliver_tx.rs#L23
error[E0308]: mismatched types --> cometbft/src/abci/request/deliver_tx.rs:23:24 | 23 | Self { tx: deliver_tx.tx } | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/deliver_tx.rs#L31: cometbft/src/abci/request/deliver_tx.rs#L31
error[E0308]: mismatched types --> cometbft/src/abci/request/deliver_tx.rs:31:27 | 31 | Ok(Self { tx: deliver_tx.tx }) | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 31 | Ok(Self { tx: deliver_tx.tx.into() }) | +++++++
[clippy] cometbft/src/abci/request/deliver_tx.rs#L45: cometbft/src/abci/request/deliver_tx.rs#L45
error[E0308]: mismatched types --> cometbft/src/abci/request/deliver_tx.rs:45:24 | 45 | Self { tx: deliver_tx.tx } | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/deliver_tx.rs#L53: cometbft/src/abci/request/deliver_tx.rs#L53
error[E0308]: mismatched types --> cometbft/src/abci/request/deliver_tx.rs:53:27 | 53 | Ok(Self { tx: deliver_tx.tx }) | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 53 | Ok(Self { tx: deliver_tx.tx.into() }) | +++++++
[clippy] cometbft/src/abci/request/extend_vote.rs#L36: cometbft/src/abci/request/extend_vote.rs#L36
error[E0308]: mismatched types --> cometbft/src/abci/request/extend_vote.rs:36:22 | 36 | txs: extend_vote.txs, | ^^^^^^^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/extend_vote.rs#L60: cometbft/src/abci/request/extend_vote.rs#L60
error[E0308]: mismatched types --> cometbft/src/abci/request/extend_vote.rs:60:22 | 60 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/finalize_block.rs#L45: cometbft/src/abci/request/finalize_block.rs#L45
error[E0308]: mismatched types --> cometbft/src/abci/request/finalize_block.rs:45:22 | 45 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/finalize_block.rs#L62: cometbft/src/abci/request/finalize_block.rs#L62
error[E0308]: mismatched types --> cometbft/src/abci/request/finalize_block.rs:62:22 | 62 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/init_chain.rs#L39: cometbft/src/abci/request/init_chain.rs#L39
error[E0308]: mismatched types --> cometbft/src/abci/request/init_chain.rs:39:34 | 39 | app_state_bytes: init_chain.app_state_bytes, | ^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:67 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L64: cometbft/src/abci/request/init_chain.rs#L64
error[E0308]: mismatched types --> cometbft/src/abci/request/init_chain.rs:64:34 | 64 | app_state_bytes: init_chain.app_state_bytes, | ^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 64 | app_state_bytes: init_chain.app_state_bytes.into(), | +++++++
[clippy] cometbft/src/abci/request/init_chain.rs#L62: cometbft/src/abci/request/init_chain.rs#L62
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:62:26 | 62 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-3643517665695416403.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:67 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L62: cometbft/src/abci/request/init_chain.rs#L62
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:62:26 | 62 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-9707029447148327621.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:29 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L38: cometbft/src/abci/request/init_chain.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:38:67 | 38 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/request/init_chain.rs#L62: cometbft/src/abci/request/init_chain.rs#L62
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/request/init_chain.rs:62:26 | 62 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-9503683730301239654.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/request/prepare_proposal.rs#L40: cometbft/src/abci/request/prepare_proposal.rs#L40
error[E0308]: mismatched types --> cometbft/src/abci/request/prepare_proposal.rs:40:22 | 40 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/prepare_proposal.rs#L57: cometbft/src/abci/request/prepare_proposal.rs#L57
error[E0308]: mismatched types --> cometbft/src/abci/request/prepare_proposal.rs:57:22 | 57 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/prepare_proposal.rs#L92: cometbft/src/abci/request/prepare_proposal.rs#L92
error[E0308]: mismatched types --> cometbft/src/abci/request/prepare_proposal.rs:92:22 | 92 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/prepare_proposal.rs#L109: cometbft/src/abci/request/prepare_proposal.rs#L109
error[E0308]: mismatched types --> cometbft/src/abci/request/prepare_proposal.rs:109:22 | 109 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/process_proposal.rs#L38: cometbft/src/abci/request/process_proposal.rs#L38
error[E0308]: mismatched types --> cometbft/src/abci/request/process_proposal.rs:38:22 | 38 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/process_proposal.rs#L55: cometbft/src/abci/request/process_proposal.rs#L55
error[E0308]: mismatched types --> cometbft/src/abci/request/process_proposal.rs:55:22 | 55 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/process_proposal.rs#L90: cometbft/src/abci/request/process_proposal.rs#L90
error[E0308]: mismatched types --> cometbft/src/abci/request/process_proposal.rs:90:22 | 90 | txs: value.txs, | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/request/process_proposal.rs#L107: cometbft/src/abci/request/process_proposal.rs#L107
error[E0308]: mismatched types --> cometbft/src/abci/request/process_proposal.rs:107:22 | 107 | txs: message.txs, | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/request/query.rs#L41: cometbft/src/abci/request/query.rs#L41
error[E0308]: mismatched types --> cometbft/src/abci/request/query.rs:41:23 | 41 | data: query.data, | ^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/query.rs#L54: cometbft/src/abci/request/query.rs#L54
error[E0308]: mismatched types --> cometbft/src/abci/request/query.rs:54:23 | 54 | data: query.data, | ^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 54 | data: query.data.into(), | +++++++
[clippy] cometbft/src/abci/request/verify_vote_extension.rs#L28: cometbft/src/abci/request/verify_vote_extension.rs#L28
error[E0308]: mismatched types --> cometbft/src/abci/request/verify_vote_extension.rs:28:33 | 28 | vote_extension: value.vote_extension, | ^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/request/verify_vote_extension.rs#L41: cometbft/src/abci/request/verify_vote_extension.rs#L41
error[E0308]: mismatched types --> cometbft/src/abci/request/verify_vote_extension.rs:41:33 | 41 | vote_extension: message.vote_extension, | ^^^^^^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 41 | vote_extension: message.vote_extension.into(), | +++++++
[clippy] cometbft/src/abci/response/begin_block.rs#L25: cometbft/src/abci/response/begin_block.rs#L25
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/begin_block.rs:25:25 | 25 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L25: cometbft/src/abci/response/begin_block.rs#L25
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/begin_block.rs:25:25 | 25 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L25: cometbft/src/abci/response/begin_block.rs#L25
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/begin_block.rs:25:60 | 25 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L38: cometbft/src/abci/response/begin_block.rs#L38
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_34::abci::Event>` is not satisfied --> cometbft/src/abci/response/begin_block.rs:38:26 | 38 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::Event>` = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-256849232783460354.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/begin_block.rs#L55: cometbft/src/abci/response/begin_block.rs#L55
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/begin_block.rs:55:25 | 55 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L55: cometbft/src/abci/response/begin_block.rs#L55
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/begin_block.rs:55:25 | 55 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L55: cometbft/src/abci/response/begin_block.rs#L55
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/begin_block.rs:55:60 | 55 | events: begin_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/begin_block.rs#L68: cometbft/src/abci/response/begin_block.rs#L68
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_37::abci::Event>` is not satisfied --> cometbft/src/abci/response/begin_block.rs:68:26 | 68 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::Event>` = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-14112106790460510371.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/check_tx.rs#L63: cometbft/src/abci/response/check_tx.rs#L63
error[E0308]: mismatched types --> cometbft/src/abci/response/check_tx.rs:63:23 | 63 | data: check_tx.data, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/check_tx.rs#L68: cometbft/src/abci/response/check_tx.rs#L68
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:68:25 | 68 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L68: cometbft/src/abci/response/check_tx.rs#L68
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:68:25 | 68 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L68: cometbft/src/abci/response/check_tx.rs#L68
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:68:57 | 68 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L83: cometbft/src/abci/response/check_tx.rs#L83
error[E0308]: mismatched types --> cometbft/src/abci/response/check_tx.rs:83:23 | 83 | data: check_tx.data, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 83 | data: check_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/check_tx.rs#L91: cometbft/src/abci/response/check_tx.rs#L91
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_34::abci::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:91:26 | 91 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::Event>` = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-256849232783460354.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/check_tx.rs#L113: cometbft/src/abci/response/check_tx.rs#L113
error[E0308]: mismatched types --> cometbft/src/abci/response/check_tx.rs:113:23 | 113 | data: check_tx.data, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/check_tx.rs#L118: cometbft/src/abci/response/check_tx.rs#L118
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:118:25 | 118 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L118: cometbft/src/abci/response/check_tx.rs#L118
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:118:25 | 118 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L118: cometbft/src/abci/response/check_tx.rs#L118
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:118:57 | 118 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L133: cometbft/src/abci/response/check_tx.rs#L133
error[E0308]: mismatched types --> cometbft/src/abci/response/check_tx.rs:133:23 | 133 | data: check_tx.data, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 133 | data: check_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/check_tx.rs#L141: cometbft/src/abci/response/check_tx.rs#L141
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_37::abci::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:141:26 | 141 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::Event>` = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-14112106790460510371.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/check_tx.rs#L163: cometbft/src/abci/response/check_tx.rs#L163
error[E0308]: mismatched types --> cometbft/src/abci/response/check_tx.rs:163:23 | 163 | data: check_tx.data, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected D7AE `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/check_tx.rs#L168: cometbft/src/abci/response/check_tx.rs#L168
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:168:25 | 168 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L168: cometbft/src/abci/response/check_tx.rs#L168
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:168:25 | 168 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L168: cometbft/src/abci/response/check_tx.rs#L168
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:168:57 | 168 | events: check_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/check_tx.rs#L180: cometbft/src/abci/response/check_tx.rs#L180
error[E0308]: mismatched types --> cometbft/src/abci/response/check_tx.rs:180:23 | 180 | data: check_tx.data, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 180 | data: check_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/check_tx.rs#L188: cometbft/src/abci/response/check_tx.rs#L188
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_38::abci::Event>` is not satisfied --> cometbft/src/abci/response/check_tx.rs:188:26 | 188 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::Event>` = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-14730068741760682266.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/commit.rs#L27: cometbft/src/abci/response/commit.rs#L27
error[E0308]: mismatched types --> cometbft/src/abci/response/commit.rs:27:23 | 27 | data: commit.data, | ^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/commit.rs#L38: cometbft/src/abci/response/commit.rs#L38
error[E0308]: mismatched types --> cometbft/src/abci/response/commit.rs:38:23 | 38 | data: commit.data, | ^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 38 | data: commit.data.into(), | +++++++
[clippy] cometbft/src/abci/response/commit.rs#L55: cometbft/src/abci/response/commit.rs#L55
error[E0308]: mismatched types --> cometbft/src/abci/response/commit.rs:55:23 | 55 | data: commit.data, | ^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/commit.rs#L66: cometbft/src/abci/response/commit.rs#L66
error[E0308]: mismatched types --> cometbft/src/abci/response/commit.rs:66:23 | 66 | data: commit.data, | ^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 66 | data: commit.data.into(), | +++++++
[clippy] cometbft/src/abci/response/deliver_tx.rs#L49: cometbft/src/abci/response/deliver_tx.rs#L49
error[E0308]: mismatched types --> cometbft/src/abci/response/deliver_tx.rs:49:23 | 49 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L54: cometbft/src/abci/response/deliver_tx.rs#L54
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/deliver_tx.rs:54:25 | 54 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L54: cometbft/src/abci/response/deliver_tx.rs#L54
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/deliver_tx.rs:54:25 | 54 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L54: cometbft/src/abci/response/deliver_tx.rs#L54
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/deliver_tx.rs:54:59 | 54 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L66: cometbft/src/abci/response/deliver_tx.rs#L66
error[E0308]: mismatched types --> cometbft/src/abci/response/deliver_tx.rs:66:23 | 66 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 66 | data: deliver_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/deliver_tx.rs#L74: cometbft/src/abci/response/deliver_tx.rs#L74
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_34::abci::Event>` is not satisfied --> cometbft/src/abci/response/deliver_tx.rs:74:26 | 74 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::Event>` = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-256849232783460354.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/deliver_tx.rs#L93: cometbft/src/abci/response/deliver_tx.rs#L93
error[E0308]: mismatched types --> cometbft/src/abci/response/deliver_tx.rs:93:23 | 93 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L98: cometbft/src/abci/response/deliver_tx.rs#L98
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/deliver_tx.rs:98:25 | 98 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L98: cometbft/src/abci/response/deliver_tx.rs#L98
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/deliver_tx.rs:98:25 | 98 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L98: cometbft/src/abci/response/deliver_tx.rs#L98
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/deliver_tx.rs:98:59 | 98 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/deliver_tx.rs#L110: cometbft/src/abci/response/deliver_tx.rs#L110
error[E0308]: mismatched types --> cometbft/src/abci/response/deliver_tx.rs:110:23 | 110 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 110 | data: deliver_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/response/deliver_tx.rs#L118: cometbft/src/abci/response/deliver_tx.rs#L118
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_37::abci::Event>` is not satisfied --> cometbft/src/abci/response/deliver_tx.rs:118:26 | 118 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::Event>` = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-14112106790460510371.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/end_block.rs#L32: cometbft/src/abci/response/end_block.rs#L32
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/end_block.rs:32:36 | 32 | validator_updates: end_block | ____________________________________^ 33 | | .validator_updates 34 | | .into_iter() 35 | | .map(Into::into) 36 | | .collect(), | |______________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L32: cometbft/src/abci/response/end_block.rs#L32
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/end_block.rs:32:36 | 32 | validator_updates: end_block | ____________________________________^ 33 | | .validator_updates 34 | | .into_iter() 35 | | .map(Into::into) | |____________________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L35: cometbft/src/abci/response/end_block.rs#L35
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/end_block.rs:35:26 | 35 | .map(Into::into) | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L38: cometbft/src/abci/response/end_block.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/end_block.rs:38:25 | 38 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L38: cometbft/src/abci/response/end_block.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/end_block.rs:38:25 | 38 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L38: cometbft/src/abci/response/end_block.rs#L38
F438
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/end_block.rs:38:58 | 38 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_34::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_34::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L51: cometbft/src/abci/response/end_block.rs#L51
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/response/end_block.rs:51:26 | 51 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-3643517665695416403.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/end_block.rs#L60: cometbft/src/abci/response/end_block.rs#L60
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_34::abci::Event>` is not satisfied --> cometbft/src/abci/response/end_block.rs:60:26 | 60 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::Event>` = note: required for `cometbft_proto::v0_34::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-256849232783460354.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/end_block.rs#L77: cometbft/src/abci/response/end_block.rs#L77
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/end_block.rs:77:36 | 77 | validator_updates: end_block | ____________________________________^ 78 | | .validator_updates 79 | | .into_iter() 80 | | .map(Into::into) 81 | | .collect(), | |______________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L77: cometbft/src/abci/response/end_block.rs#L77
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/end_block.rs:77:36 | 77 | validator_updates: end_block | ____________________________________^ 78 | | .validator_updates 79 | | .into_iter() 80 | | .map(Into::into) | |____________________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L80: cometbft/src/abci/response/end_block.rs#L80
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/end_block.rs:80:26 | 80 | .map(Into::into) | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/end_block.rs#L83: cometbft/src/abci/response/end_block.rs#L83
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/end_block.rs:83:25 | 83 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L83: cometbft/src/abci/response/end_block.rs#L83
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/end_block.rs:83:25 | 83 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L83: cometbft/src/abci/response/end_block.rs#L83
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/end_block.rs:83:58 | 83 | events: end_block.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_37::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_37::abci::Event>`
[clippy] cometbft/src/abci/response/end_block.rs#L96: cometbft/src/abci/response/end_block.rs#L96
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/response/end_block.rs:96:26 | 96 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-9707029447148327621.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/end_block.rs#L105: cometbft/src/abci/response/end_block.rs#L105
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_37::abci::Event>` is not satisfied --> cometbft/src/abci/response/end_block.rs:105:26 | 105 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::Event>` = note: required for `cometbft_proto::v0_37::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-14112106790460510371.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/extend_vote.rs#L21: cometbft/src/abci/response/extend_vote.rs#L21
error[E0308]: mismatched types --> cometbft/src/abci/response/extend_vote.rs:21:33 | 21 | vote_extension: value.vote_extension, | ^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/extend_vote.rs#L31: cometbft/src/abci/response/extend_vote.rs#L31
error[E0308]: mismatched types --> cometbft/src/abci/response/extend_vote.rs:31:33 | 31 | vote_extension: message.vote_extension, | ^^^^^^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 31 | vote_extension: message.vote_extension.into(), | +++++++
[clippy] cometbft/src/abci/response/finalize_block.rs#L40: cometbft/src/abci/response/finalize_block.rs#L40
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/finalize_block.rs:40:25 | 40 | events: value.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L40: cometbft/src/abci/response/finalize_block.rs#L40
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/finalize_block.rs:40:25 | 40 | events: value.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L40: cometbft/src/abci/response/finalize_block.rs#L40
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/response/finalize_block.rs:40:54 | 40 | events: value.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L42: cometbft/src/abci/response/finalize_block.rs#L42
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/finalize_block.rs:42:36 | 42 | validator_updates: value | ____________________________________^ 43 | | .validator_updates 44 | | .into_iter() 45 | | .map(Into::into) 46 | | .collect(), | |______________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L42: cometbft/src/abci/response/finalize_block.rs#L42
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/finalize_block.rs:42:36 | 42 | validator_updates: value | ____________________________________^ 43 | | .validator_updates 44 | | .into_iter() 45 | | .map(Into::into) | |____________________________________^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L45: cometbft/src/abci/response/finalize_block.rs#L45
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/finalize_block.rs:45:26 | 45 | .map(Into::into) | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/finalize_block.rs#L61: cometbft/src/abci/response/finalize_block.rs#L61
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_38::abci::Event>` is not satisfied --> cometbft/src/abci/response/finalize_block.rs:61:26 | 61 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::Event>` = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-14730068741760682266.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/finalize_block.rs#L71: cometbft/src/abci/response/finalize_block.rs#L71
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/response/finalize_block.rs:71:26 | 71 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-9503683730301239654.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_34::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:67 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_34::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L52: cometbft/src/abci/response/init_chain.rs#L52
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:52:26 | 52 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_34::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-3643517665695416403.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_37::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:67 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_37::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_37::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L52: cometbft/src/abci/response/init_chain.rs#L52
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:52:26 | 52 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_37::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_37::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-9707029447148327621.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:29 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L34: cometbft/src/abci/response/init_chain.rs#L34
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::ValidatorUpdate: core::convert::From<validator::Update>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:34:67 | 34 | validators: init_chain.validators.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<validator::Update>` is not implemented for `cometbft_proto::v0_38::abci::ValidatorUpdate` | = note: required for `validator::Update` to implement `core::convert::Into<cometbft_proto::v0_38::abci::ValidatorUpdate>`
[clippy] cometbft/src/abci/response/init_chain.rs#L52: cometbft/src/abci/response/init_chain.rs#L52
error[E0277]: the trait bound `validator::Update: core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not satisfied --> cometbft/src/abci/response/init_chain.rs:52:26 | 52 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::ValidatorUpdate>` is not implemented for `validator::Update` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::Into<validator::Update>` = note: required for `validator::Update` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::ValidatorUpdate>` = note: required for `cometbft_proto::v0_38::abci::ValidatorUpdate` to implement `core::convert::TryInto<validator::Update>` = note: required because it appears within the type `fn(ValidatorUpdate) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-9503683730301239654.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/response/load_snapshot_chunk.rs#L25: cometbft/src/abci/response/load_snapshot_chunk.rs#L25
error[E0308]: mismatched types --> cometbft/src/abci/response/load_snapshot_chunk.rs:25:24 | 25 | chunk: load_snapshot_chunk.chunk, | ^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/load_snapshot_chunk.rs#L35: cometbft/src/abci/response/load_snapshot_chunk.rs#L35
error[E0308]: mismatched types --> cometbft/src/abci/response/load_snapshot_chunk.rs:35:24 | 35 | chunk: load_snapshot_chunk.chunk, | ^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 35 | chunk: load_snapshot_chunk.chunk.into(), | +++++++
[clippy] cometbft/src/abci/response/prepare_proposal.rs#L22: cometbft/src/abci/response/prepare_proposal.rs#L22
error[E0308]: mismatched types --> cometbft/src/abci/response/prepare_proposal.rs:22:25 | 22 | Self { txs: value.txs } | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/response/prepare_proposal.rs#L30: cometbft/src/abci/response/prepare_proposal.rs#L30
error[E0308]: mismatched types --> cometbft/src/abci/response/prepare_proposal.rs:30:28 | 30 | Ok(Self { txs: message.txs }) | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/response/prepare_proposal.rs#L44: cometbft/src/abci/response/prepare_proposal.rs#L44
error[E0308]: mismatched types --> cometbft/src/abci/response/prepare_proposal.rs:44:25 | 44 | Self { txs: value.txs } | ^^^^^^^^^ expected `Vec<Vec<u8>>`, found `Vec<Bytes>` | = note: expected struct `alloc::vec::Vec<alloc::vec::Vec<u8>>` found struct `alloc::vec::Vec<bytes::Bytes>`
[clippy] cometbft/src/abci/response/prepare_proposal.rs#L52: cometbft/src/abci/response/prepare_proposal.rs#L52
error[E0308]: mismatched types --> cometbft/src/abci/response/prepare_proposal.rs:52:28 | 52 | Ok(Self { txs: message.txs }) | ^^^^^^^^^^^ expected `Vec<Bytes>`, found `Vec<Vec<u8>>` | = note: expected struct `alloc::vec::Vec<bytes::Bytes>` found struct `alloc::vec::Vec<alloc::vec::Vec<u8>>`
[clippy] cometbft/src/abci/response/query.rs#L53: cometbft/src/abci/response/query.rs#L53
error[E0308]: mismatched types --> cometbft/src/abci/response/query.rs:53:22 | 53 | key: query.key, | ^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/query.rs#L54: cometbft/src/abci/response/query.rs#L54
error[E0308]: mismatched types --> cometbft/src/abci/response/query.rs:54:24 | 54 | value: query.value, | ^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/response/query.rs#L71: cometbft/src/abci/response/query.rs#L71
error[E0308]: mismatched types --> cometbft/src/abci/response/query.rs:71:22 | 71 | key: query.key, | ^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 71 | key: query.key.into(), | +++++++
[clippy] cometbft/src/abci/response/query.rs#L72: cometbft/src/abci/response/query.rs#L72
error[E0308]: mismatched types --> cometbft/src/abci/response/query.rs:72:24 | 72 | value: query.value, | ^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 72 | value: query.value.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L258: cometbft/src/abci/types.rs#L258
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:258:26 | 258 | address: Bytes::copy_from_slice(&v.address[..]), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L388: cometbft/src/abci/types.rs#L388
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:388:23 | 388 | hash: snapshot.hash, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L389: cometbft/src/abci/types.rs#L389
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:389:27 | 389 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L402: cometbft/src/abci/types.rs#L402
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:402:23 | 402 | hash: snapshot.hash, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 402 | hash: snapshot.hash.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L403: cometbft/src/abci/types.rs#L403
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:403:27 | 403 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 403 | metadata: snapshot.metadata.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L425: cometbft/src/abci/types.rs#L425
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:425:26 | 425 | address: Bytes::copy_from_slice(&v.address[..]), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L617: cometbft/src/abci/types.rs#L617
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:617:23 | 617 | hash: snapshot.hash, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L618: cometbft/src/abci/types.rs#L618
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:618:27 | 618 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L631: cometbft/src/abci/types.rs#L631
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:631:23 | 631 | hash: snapshot.hash, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 631 | hash: snapshot.hash.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L632: cometbft/src/abci/types.rs#L632
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:632:27 | 632 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 632 | metadata: snapshot.metadata.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L655: cometbft/src/abci/types.rs#L655
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:655:26 | 655 | address: Bytes::copy_from_slice(&v.address[..]), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L729: cometbft/src/abci/types.rs#L729
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:729:33 | 729 | vote_extension: vi.vote_extension, | ^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L750: cometbft/src/abci/types.rs#L750
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:750:33 | 750 | vote_extension: vi.vote_extension, | ^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 750 | vote_extension: vi.vote_extension.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L857: cometbft/src/abci/types.rs#L857
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:857:23 | 857 | hash: snapshot.hash, | ^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L858: cometbft/src/abci/types.rs#L858
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:858:27 | 858 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L871: cometbft/src/abci/types.rs#L871
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:871:23 | 871 | hash: snapshot.hash, | ^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 871 | hash: snapshot.hash.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L872: cometbft/src/abci/types.rs#L872
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:872:27 | 872 | metadata: snapshot.metadata, | ^^^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 872 | metadata: snapshot.metadata.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L883: cometbft/src/abci/types.rs#L883
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:883:23 | 883 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^- help: try using a conversion method: `.to_vec()` | | | expected `Vec<u8>`, found `Bytes` | = note: expected struct `alloc::vec::Vec<u8>` found struct `bytes::Bytes`
[clippy] cometbft/src/abci/types.rs#L888: cometbft/src/abci/types.rs#L888
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/types.rs:888:25 | 888 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/types.rs#L888: cometbft/src/abci/types.rs#L888
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/types.rs:888:25 | 888 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/types.rs#L888: cometbft/src/abci/types.rs#L888
error[E0277]: the trait bound `cometbft_proto::v0_38::abci::Event: core::convert::From<abci::event::Event>` is not satisfied --> cometbft/src/abci/types.rs:888:59 | 888 | events: deliver_tx.events.into_iter().map(Into::into).collect(), | ^^^^^^^^^^ the trait `core::convert::From<abci::event::Event>` is not implemented for `cometbft_proto::v0_38::abci::Event` | = note: required for `abci::event::Event` to implement `core::convert::Into<cometbft_proto::v0_38::abci::Event>`
[clippy] cometbft/src/abci/types.rs#L900: cometbft/src/abci/types.rs#L900
error[E0308]: mismatched types --> cometbft/src/abci/types.rs:900:23 | 900 | data: deliver_tx.data, | ^^^^^^^^^^^^^^^ expected `Bytes`, found `Vec<u8>` | = note: expected struct `bytes::Bytes` found struct `alloc::vec::Vec<u8>` help: call `Into::into` on this expression to convert `alloc::vec::Vec<u8>` into `bytes::Bytes` | 900 | data: deliver_tx.data.into(), | +++++++
[clippy] cometbft/src/abci/types.rs#L908: cometbft/src/abci/types.rs#L908
error[E0277]: the trait bound `abci::event::Event: core::convert::From<cometbft_proto::v0_38::abci::Event>` is not satisfied --> cometbft/src/abci/types.rs:908:26 | 908 | .map(TryInto::try_into) | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::abci::Event>` is not implemented for `abci::event::Event` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::Into<abci::event::Event>` = note: required for `abci::event::Event` to implement `core::convert::TryFrom<cometbft_proto::v0_38::abci::Event>` = note: required for `cometbft_proto::v0_38::abci::Event` to implement `core::convert::TryInto<abci::event::Event>` = note: required because it appears within the type `fn(Event) -> Result<Event, ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::iter::Iterator::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/iter/traits/iterator.rs:745:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-14730068741760682266.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/v0_34/request.rs#L224: cometbft/src/abci/v0_34/request.rs#L224
error[E0277]: the trait bound `RequestSetOption: From<SetOption>` is not satisfied --> cometbft/src/abci/v0_34/request.rs:224:62 | 224 | Request::SetOption(x) => Some(Value::SetOption(x.into())), | ^^^^ the trait `core::convert::From<abci::request::set_option::SetOption>` is not implemented for `cometbft_proto::v0_34::abci::RequestSetOption` | = note: required for `abci::request::set_option::SetOption` to implement `core::convert::Into<cometbft_proto::v0_34::abci::RequestSetOption>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-17852328438098441240.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/v0_34/request.rs#L250: cometbft/src/abci/v0_34/request.rs#L250
error[E0277]: the trait bound `SetOption: TryFrom<RequestSetOption>` is not satisfied --> cometbft/src/abci/v0_34/request.rs:250:66 | 250 | Some(Value::SetOption(x)) => Ok(Request::SetOption(x.try_into()?)), | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::abci::RequestSetOption>` is not implemented for `abci::request::set_option::SetOption` | = note: required for `cometbft_proto::v0_34::abci::RequestSetOption` to implement `core::convert::Into<abci::request::set_option::SetOption>` = note: required for `abci::request::set_option::SetOption` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::RequestSetOption>` = note: required for `cometbft_proto::v0_34::abci::RequestSetOption` to implement `core::convert::TryInto<abci::request::set_option::SetOption>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-45278286682624681.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/v0_34/response.rs#L199: cometbft/src/abci/v0_34/response.rs#L199
error[E0277]: the trait bound `ResponseSetOption: From<SetOption>` is not satisfied --> cometbft/src/abci/v0_34/response.rs:199:63 | 199 | Response::SetOption(x) => Some(Value::SetOption(x.into())), | ^^^^ unsatisfied trait bound | = help: the trait `core::convert::From<abci::response::set_option::SetOption>` is not implemented for `cometbft_proto::v0_34::abci::ResponseSetOption` = note: required for `abci::response::set_option::SetOption` to implement `core::convert::Into<cometbft_proto::v0_34::abci::ResponseSetOption>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-2463705188636580681.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/abci/v0_34/response.rs#L226: cometbft/src/abci/v0_34/response.rs#L226
error[E0277]: the trait bound `SetOption: TryFrom<ResponseSetOption>` is not satisfied --> cometbft/src/abci/v0_34/response.rs:226:67 | 226 | Some(Value::SetOption(x)) => Ok(Response::SetOption(x.try_into()?)), | ^^^^^^^^ unsatisfied trait bound | = help: the trait `core::convert::From<cometbft_proto::v0_34::abci::ResponseSetOption>` is not implemented for `abci::response::set_option::SetOption` = note: required for `cometbft_proto::v0_34::abci::ResponseSetOption` to implement `core::convert::Into<abci::response::set_option::SetOption>` = note: required for `abci::response::set_option::SetOption` to implement `core::convert::TryFrom<cometbft_proto::v0_34::abci::ResponseSetOption>` = note: required for `cometbft_proto::v0_34::abci::ResponseSetOption` to implement `core::convert::TryInto<abci::response::set_option::SetOption>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-6905430168538351031.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/consensus/params.rs#L102: cometbft/src/consensus/params.rs#L102
error[E0277]: the trait bound `evidence::Params: core::convert::TryFrom<cometbft_proto::v0_34::types::EvidenceParams>` is not satisfied --> cometbft/src/consensus/params.rs:102:22 | 102 | .try_into()?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::EvidenceParams>` is not implemented for `evidence::Params` | = note: required for `cometbft_proto::v0_34::types::EvidenceParams` to implement `core::convert::Into<evidence::Params>` = note: required for `evidence::Params` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::EvidenceParams>` = note: required for `cometbft_proto::v0_34::types::EvidenceParams` to implement `core::convert::TryInto<evidence::Params>`
[clippy] cometbft/src/consensus/params.rs#L117: cometbft/src/consensus/params.rs#L117
error[E0277]: the trait bound `cometbft_proto::v0_34::types::EvidenceParams: core::convert::From<evidence::Params>` is not satisfied --> cometbft/src/consensus/params.rs:117:47 | 117 | evidence: Some(value.evidence.into()), | ^^^^ the trait `core::convert::From<evidence::Params>` is not implemented for `cometbft_proto::v0_34::types::EvidenceParams` | = note: required for `evidence::Params` to implement `core::convert::Into<cometbft_proto::v0_34::types::EvidenceParams>`
[clippy] cometbft/src/consensus/params.rs#L138: cometbft/src/consensus/params.rs#L138
error[E0277]: the trait bound `evidence::Params: core::convert::TryFrom<cometbft_proto::v0_34::types::EvidenceParams>` is not satisfied --> cometbft/src/consensus/params.rs:138:22 | 138 | .try_into()?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::EvidenceParams>` is not implemented for `evidence::Params` | = note: required for `cometbft_proto::v0_34::types::EvidenceParams` to implement `core::convert::Into<evidence::Params>` = note: required for `evidence::Params` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::EvidenceParams>` = note: required for `cometbft_proto::v0_34::types::EvidenceParams` to implement `core::convert::TryInto<evidence::Params>`
[clippy] cometbft/src/consensus/params.rs#L153: cometbft/src/consensus/params.rs#L153
error[E0277]: the trait bound `cometbft_proto::v0_34::types::EvidenceParams: core::convert::From<evidence::Params>` is not satisfied --> cometbft/src/consensus/params.rs:153:47 | 153 | evidence: Some(value.evidence.into()), | ^^^^ the trait `core::convert::From<evidence::Params>` is not implemented for `cometbft_proto::v0_34::types::EvidenceParams` | = note: required for `evidence::Params` to implement `core::convert::Into<cometbft_proto::v0_34::types::EvidenceParams>`
[clippy] cometbft/src/consensus/params.rs#L232: cometbft/src/consensus/params.rs#L232
error[E0277]: the trait bound `evidence::Params: core::convert::TryFrom<cometbft_proto::v0_37::types::EvidenceParams>` is not satisfied --> cometbft/src/consensus/params.rs:232:22 | 232 | .try_into()?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::types::EvidenceParams>` is not implemented for `evidence::Params` | = note: required for `cometbft_proto::v0_37::types::EvidenceParams` to implement `core::convert::Into<evidence::Params>` = note: required for `evidence::Params` to implement `core::convert::TryFrom<cometbft_proto::v0_37::types::EvidenceParams>` = note: required for `cometbft_proto::v0_37::types::EvidenceParams` to implement `core::convert::TryInto<evidence::Params>`
[clippy] cometbft/src/consensus/params.rs#L247: cometbft/src/consensus/params.rs#L247
error[E0277]: the trait bound `cometbft_proto::v0_37::types::EvidenceParams: core::convert::From<evidence::Params>` is not satisfied --> cometbft/src/consensus/params.rs:247:47 | 247 | evidence: Some(value.evidence.into()), | ^^^^ the trait `core::convert::From<evidence::Params>` is not implemented for `cometbft_proto::v0_37::types::EvidenceParams` | = note: required for `evidence::Params` to implement `core::convert::Into<cometbft_proto::v0_37::types::EvidenceParams>`
[clippy] cometbft/src/consensus/params.rs#L322: cometbft/src/consensus/params.rs#L322
error[E0277]: the trait bound `evidence::Params: core::convert::TryFrom<cometbft_proto::v0_38::types::EvidenceParams>` is not satisfied --> cometbft/src/consensus/params.rs:322:22 | 322 | .try_into()?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::types::EvidenceParams>` is not implemented for `evidence::Params` | = note: required for `cometbft_proto::v0_38::types::EvidenceParams` to implement `core::convert::Into<evidence::Params>` = note: required for `evidence::Params` to implement `core::convert::TryFrom<cometbft_proto::v0_38::types::EvidenceParams>` = note: required for `cometbft_proto::v0_38::types::EvidenceParams` to implement `core::convert::TryInto<evidence::Params>`
[clippy] cometbft/src/consensus/params.rs#L341: cometbft/src/consensus/params.rs#L341
error[E0277]: the trait bound `cometbft_proto::v0_38::types::EvidenceParams: core::convert::From<evidence::Params>` is not satisfied --> cometbft/src/consensus/params.rs:341:47 | 341 | evidence: Some(value.evidence.into()), | ^^^^ the trait `core::convert::From<evidence::Params>` is not implemented for `cometbft_proto::v0_38::types::EvidenceParams` | = note: required for `evidence::Params` to implement `core::convert::Into<cometbft_proto::v0_38::types::EvidenceParams>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::TryFrom<cometbft_proto::v0_34::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_34::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_34::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L73: cometbft/src/proposal/sign_proposal.rs#L73
error[E0277]: the trait bound `cometbft_proto::v0_34::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:73:47 | 73 | proposal: Some(value.proposal.into()), | ^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_34::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L84: cometbft/src/proposal/sign_proposal.rs#L84
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:84:46 | 84 | proposal: value.proposal.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::types::Proposal>` is not implemented for `proposal::Proposal` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_34::types::Proposal>` = note: required for `cometbft_proto::v0_34::types::Proposal` to implement `core::convert::TryInto<proposal::Proposal>` = note: required because it appears within the type `fn(Proposal) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-11321174878574665747.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L85: cometbft/src/proposal/sign_proposal.rs#L85
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:85:40 | 85 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_34::privval::RemoteSignerError` to implement `core::convert::TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-4406986367491497753.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_34::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:93:27 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_34::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_34::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:93:46 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_34::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_34::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:94:24 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_34::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-8853478994124744510.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:94:40 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_34::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-8853478994124744510.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::TryFrom<cometbft_proto::v0_37::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_37::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_37::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L73: cometbft/src/proposal/sign_proposal.rs#L73
error[E0277]: the trait bound `cometbft_proto::v0_37::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:73:47 | 73 | proposal: Some(value.proposal.into()), | ^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_37::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L84: cometbft/src/proposal/sign_proposal.rs#L84
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:84:46 | 84 | proposal: value.proposal.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::types::Proposal>` is not implemented for `proposal::Proposal` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_37::types::Proposal>` = note: required for `cometbft_proto::v0_37::types::Proposal` to implement `core::convert::TryInto<proposal::Proposal>` = note: required because it appears within the type `fn(Proposal) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-4920992183212440136.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L85: cometbft/src/proposal/sign_proposal.rs#L85
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:85:40 | 85 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_37::privval::RemoteSignerError` to implement `core::convert::TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-16435368403155395539.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_37::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:93:27 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_37::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_37::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:93:46 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_37::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_37::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:94:24 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_37::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-12596989165274273238.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:94:40 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_37::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-12596989165274273238.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::TryFrom<cometbft_proto::v0_38::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_38::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L64: cometbft/src/proposal/sign_proposal.rs#L64
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:64:27 | 64 | proposal: Proposal::try_from(value.proposal.unwrap())?, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not implemented for `proposal::Proposal` | = help: the following other types implement trait `core::convert::TryFrom<T>`: `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1::Proposal>` `proposal::Proposal` implements `core::convert::TryFrom<cometbft_proto::types::v1beta1::Proposal>` = note: required for `cometbft_proto::v0_38::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L73: cometbft/src/proposal/sign_proposal.rs#L73
error[E0277]: the trait bound `cometbft_proto::v0_38::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:73:47 | 73 | proposal: Some(value.proposal.into()), | ^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_38::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L84: cometbft/src/proposal/sign_proposal.rs#L84
error[E0277]: the trait bound `proposal::Proposal: core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:84:46 | 84 | proposal: value.proposal.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::types::Proposal>` is not implemented for `proposal::Proposal` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::types::Proposal` to implement `core::convert::Into<proposal::Proposal>` = note: required for `proposal::Proposal` to implement `core::convert::TryFrom<cometbft_proto::v0_38::types::Proposal>` = note: required for `cometbft_proto::v0_38::types::Proposal` to implement `core::convert::TryInto<proposal::Proposal>` = note: required because it appears within the type `fn(Proposal) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-8250406407983333072.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L85: cometbft/src/proposal/sign_proposal.rs#L85
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:85:40 | 85 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_38::privval::RemoteSignerError` to implement `core::convert::TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-11382349061572620982.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_38::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:93:27 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_38::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L93: cometbft/src/proposal/sign_proposal.rs#L93
error[E0277]: the trait bound `cometbft_proto::v0_38::types::Proposal: core::convert::From<proposal::Proposal>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:93:46 | 93 | proposal: value.proposal.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<proposal::Proposal>` is not implemented for `cometbft_proto::v0_38::types::Proposal` | = note: required for `proposal::Proposal` to implement `core::convert::Into<cometbft_proto::v0_38::types::Proposal>`
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:94:24 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_38::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-2009558475609106591.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/proposal/sign_proposal.rs#L94: cometbft/src/proposal/sign_proposal.rs#L94
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/proposal/sign_proposal.rs:94:40 | 94 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_38::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-2009558475609106591.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L29: cometbft/src/public_key/pub_key_response.rs#L29
error[E0277]: the trait bound `public_key::PublicKey: core::convert::From<cometbft_proto::v0_34::crypto::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:29:44 | 29 | pub_key: value.pub_key.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::crypto::PublicKey>` is not implemented for `public_key::PublicKey` | | | required by a bound introduced by this call | = help: the following other types implement trait `core::convert::From<T>`: `public_key::PublicKey` implements `core::convert::From<crypto::ed25519::verification_key::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<ecdsa::verifying::VerifyingKey<k256::Secp256k1>>` `public_key::PublicKey` implements `core::convert::From<ed25519_consensus::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<public_key::ProtobufPublicKeyWrapper>` = note: required for `cometbft_proto::v0_34::crypto::PublicKey` to implement `core::convert::Into<public_key::PublicKey>` = note: required for `public_key::PublicKey` to implement `core::convert::TryFrom<cometbft_proto::v0_34::crypto::PublicKey>` = note: required for `cometbft_proto::v0_34::crypto::PublicKey` to implement `core::convert::TryInto<public_key::PublicKey>` = note: required because it appears within the type `fn(PublicKey) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-18418206800844010668.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L30: cometbft/src/public_key/pub_key_response.rs#L30
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:30:40 | 30 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_34::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_34::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_34::privval::RemoteSignerError` to implement `core::convert::TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-4406986367491497753.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:38:26 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_34::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_34::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_34::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:38:44 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_34::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_34::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:39:24 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_34::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-8853478994124744510.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:39:40 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_34::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_34::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-8853478994124744510.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L29: cometbft/src/public_key/pub_key_response.rs#L29
error[E0277]: the trait bound `public_key::PublicKey: core::convert::From<cometbft_proto::v0_37::crypto::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:29:44 | 29 | pub_key: value.pub_key.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::crypto::PublicKey>` is not implemented for `public_key::PublicKey` | | | required by a bound introduced by this call | = help: the following other types implement trait `core::convert::From<T>`: `public_key::PublicKey` implements `core::convert::From<crypto::ed25519::verification_key::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<ecdsa::verifying::VerifyingKey<k256::Secp256k1>>` `public_key::PublicKey` implements `core::convert::From<ed25519_consensus::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<public_key::ProtobufPublicKeyWrapper>` = note: required for `cometbft_proto::v0_37::crypto::PublicKey` to implement `core::convert::Into<public_key::PublicKey>` = note: required for `public_key::PublicKey` to implement `core::convert::TryFrom<cometbft_proto::v0_37::crypto::PublicKey>` = note: required for `cometbft_proto::v0_37::crypto::PublicKey` to implement `core::convert::TryInto<public_key::PublicKey>` = note: required because it appears within the type `fn(PublicKey) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-13957242337625528992.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L30: cometbft/src/public_key/pub_key_response.rs#L30
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:30:40 | 30 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_37::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_37::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_37::privval::RemoteSignerError` to implement `core::convert::TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-16435368403155395539.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:38:26 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_37::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_37::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_37::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:38:44 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_37::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_37::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:39:24 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_37::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-12596989165274273238.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:39:40 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_37::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_37::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-12596989165274273238.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L29: cometbft/src/public_key/pub_key_response.rs#L29
error[E0277]: the trait bound `public_key::PublicKey: core::convert::From<cometbft_proto::v0_38::crypto::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:29:44 | 29 | pub_key: value.pub_key.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::crypto::PublicKey>` is not implemented for `public_key::PublicKey` | | | required by a bound introduced by this call | = help: the following other types implement trait `core::convert::From<T>`: `public_key::PublicKey` implements `core::convert::From<crypto::ed25519::verification_key::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<ecdsa::verifying::VerifyingKey<k256::Secp256k1>>` `public_key::PublicKey` implements `core::convert::From<ed25519_consensus::VerificationKey>` `public_key::PublicKey` implements `core::convert::From<public_key::ProtobufPublicKeyWrapper>` = note: required for `cometbft_proto::v0_38::crypto::PublicKey` to implement `core::convert::Into<public_key::PublicKey>` = note: required for `public_key::PublicKey` to implement `core::convert::TryFrom<cometbft_proto::v0_38::crypto::PublicKey>` = note: required for `cometbft_proto::v0_38::crypto::PublicKey` to implement `core::convert::TryInto<public_key::PublicKey>` = note: required because it appears within the type `fn(PublicKey) -> Result<..., ...> {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-14098568153638162343.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L30: cometbft/src/public_key/pub_key_response.rs#L30
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:30:40 | 30 | error: value.error.map(TryInto::try_into).transpose()?, | --- ^^^^^^^^^^^^^^^^^ the trait `core::convert::From<cometbft_proto::v0_38::privval::RemoteSignerError>` is not implemented for `privval::RemoteSignerError` | | | required by a bound introduced by this call | = note: required for `cometbft_proto::v0_38::privval::RemoteSignerError` to implement `core::convert::Into<privval::RemoteSignerError>` = note: required for `privval::RemoteSignerError` to implement `core::convert::TryFrom<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: required for `cometbft_proto::v0_38::privval::RemoteSignerError` to implement `core::convert::TryInto<privval::RemoteSignerError>` = note: required because it appears within the type `fn(RemoteSignerError) -> ... {<... as TryInto<...>>::try_into}` note: required by a bound in `core::option::Option::<T>::map` --> /rustc/05f9846f893b09a1be1fc8560e33fc3c815cfecb/library/core/src/option.rs:1114:5 = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-11382349061572620982.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:38:26 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_38::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_38::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L38: cometbft/src/public_key/pub_key_response.rs#L38
error[E0277]: the trait bound `cometbft_proto::v0_38::crypto::PublicKey: core::convert::From<public_key::PublicKey>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:38:44 | 38 | pub_key: value.pub_key.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<public_key::PublicKey>` is not implemented for `cometbft_proto::v0_38::crypto::PublicKey` | = note: required for `public_key::PublicKey` to implement `core::convert::Into<cometbft_proto::v0_38::crypto::PublicKey>`
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:39:24 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_38::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-2009558475609106591.txt' = note: consider using `--verbose` to print the full type name to the console
[clippy] cometbft/src/public_key/pub_key_response.rs#L39: cometbft/src/public_key/pub_key_response.rs#L39
error[E0277]: the trait bound `RemoteSignerError: From<RemoteSignerError>` is not satisfied --> cometbft/src/public_key/pub_key_response.rs:39:40 | 39 | error: value.error.map(Into::into), | ^^^^^^^^^^ the trait `core::convert::From<privval::RemoteSignerError>` is not implemented for `cometbft_proto::v0_38::privval::RemoteSignerError` | = note: required for `privval::RemoteSignerError` to implement `core::convert::Into<cometbft_proto::v0_38::privval::RemoteSignerError>` = note: the full name for the type has been written to '/home/runner/work/cometbft-rs/cometbft-rs/target/debug/deps/cometbft-039ae53bb91ea4a9.long-type-2009558475609106591.txt' = note: consider using `--verbose` to print the full type name to the console
generated-protos-compile
Process completed with exit code 101.
0