Skip to content

Update penumbra deps to v80 #91

Update penumbra deps to v80

Update penumbra deps to v80 #91

Triggered via pull request December 6, 2024 01:33
Status Failure
Total duration 21m 56s
Artifacts

misbehaviour.yml

on: pull_request
Matrix: ics-double-sign
Matrix: ics-light-client-attack-freeze
Matrix: ics-light-client-attack
Matrix: light-client-attack
Fit to window
Zoom out
Zoom in

Annotations

13 errors and 80 warnings
the following explicit lifetimes could be elided: 'a: crates/relayer-types/src/utils/pretty.rs#L67
error: the following explicit lifetimes could be elided: 'a --> crates/relayer-types/src/utils/pretty.rs:67:6 | 67 | impl<'a, T: Display> Display for PrettySlice<'a, T> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 67 - impl<'a, T: Display> Display for PrettySlice<'a, T> { 67 + impl<T: Display> Display for PrettySlice<'_, T> { |
the following explicit lifetimes could be elided: 'a: crates/relayer-types/src/utils/pretty.rs#L18
error: the following explicit lifetimes could be elided: 'a --> crates/relayer-types/src/utils/pretty.rs:18:6 | 18 | impl<'a, T: Display> Display for PrettyOption<'a, T> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 18 - impl<'a, T: Display> Display for PrettyOption<'a, T> { 18 + impl<T: Display> Display for PrettyOption<'_, T> { |
the following explicit lifetimes could be elided: 'a: crates/relayer-types/src/core/ics04_channel/packet.rs#L135
error: the following explicit lifetimes could be elided: 'a --> crates/relayer-types/src/core/ics04_channel/packet.rs:135:6 | 135 | impl<'a> core::fmt::Debug for PacketData<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 135 - impl<'a> core::fmt::Debug for PacketData<'a> { 135 + impl core::fmt::Debug for PacketData<'_> { |
function cannot return without recursing: crates/relayer-types/src/core/ics03_connection/connection.rs#L396
error: function cannot return without recursing --> crates/relayer-types/src/core/ics03_connection/connection.rs:396:5 | 396 | / fn from(value: State) -> Self { 397 | | value.into() 398 | | } | |_____^ | note: recursive call site --> crates/relayer-types/src/core/ics03_connection/connection.rs:397:9 | 397 | value.into() | ^^^^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unconditional_recursion = note: `-D clippy::unconditional-recursion` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::unconditional_recursion)]`
importing legacy numeric constants: crates/relayer-types/src/core/ics03_connection/connection.rs#L5
error: importing legacy numeric constants --> crates/relayer-types/src/core/ics03_connection/connection.rs:5:5 | 5 | u64, | ^^^ | = help: remove this import = note: then `u64::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `-D clippy::legacy-numeric-constants` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::legacy_numeric_constants)]`
the following explicit lifetimes could be elided: 'de: crates/relayer-types/src/core/ics02_client/trust_threshold.rs#L222
error: the following explicit lifetimes could be elided: 'de --> crates/relayer-types/src/core/ics02_client/trust_threshold.rs:222:10 | 222 | impl<'de> Visitor<'de> for StringOrInt { | ^^^ ^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 222 - impl<'de> Visitor<'de> for StringOrInt { 222 + impl Visitor<'_> for StringOrInt { |
the following explicit lifetimes could be elided: 'a: crates/relayer-types/src/utils/pretty.rs#L67
error: the following explicit lifetimes could be elided: 'a --> crates/relayer-types/src/utils/pretty.rs:67:6 | 67 | impl<'a, T: Display> Display for PrettySlice<'a, T> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 67 - impl<'a, T: Display> Display for PrettySlice<'a, T> { 67 + impl<T: Display> Display for PrettySlice<'_, T> { |
the following explicit lifetimes could be elided: 'a: crates/relayer-types/src/utils/pretty.rs#L18
error: the following explicit lifetimes could be elided: 'a --> crates/relayer-types/src/utils/pretty.rs:18:6 | 18 | impl<'a, T: Display> Display for PrettyOption<'a, T> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 18 - impl<'a, T: Display> Display for PrettyOption<'a, T> { 18 + impl<T: Display> Display for PrettyOption<'_, T> { |
the following explicit lifetimes could be elided: 'a: crates/relayer-types/src/core/ics04_channel/packet.rs#L135
error: the following explicit lifetimes could be elided: 'a --> crates/relayer-types/src/core/ics04_channel/packet.rs:135:6 | 135 | impl<'a> core::fmt::Debug for PacketData<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 135 - impl<'a> core::fmt::Debug for PacketData<'a> { 135 + impl core::fmt::Debug for PacketData<'_> { |
function cannot return without recursing: crates/relayer-types/src/core/ics03_connection/connection.rs#L396
error: function cannot return without recursing --> crates/relayer-types/src/core/ics03_connection/connection.rs:396:5 | 396 | / fn from(value: State) -> Self { 397 | | value.into() 398 | | } | |_____^ | note: recursive call site --> crates/relayer-types/src/core/ics03_connection/connection.rs:397:9 | 397 | value.into() | ^^^^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unconditional_recursion = note: `-D clippy::unconditional-recursion` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::unconditional_recursion)]`
importing legacy numeric constants: crates/relayer-types/src/core/ics03_connection/connection.rs#L5
error: importing legacy numeric constants --> crates/relayer-types/src/core/ics03_connection/connection.rs:5:5 | 5 | u64, | ^^^ | = help: remove this import = note: then `u64::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `-D clippy::legacy-numeric-constants` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::legacy_numeric_constants)]`
the following explicit lifetimes could be elided: 'de: crates/relayer-types/src/core/ics02_client/trust_threshold.rs#L222
error: the following explicit lifetimes could be elided: 'de --> crates/relayer-types/src/core/ics02_client/trust_threshold.rs:222:10 | 222 | impl<'de> Visitor<'de> for StringOrInt { | ^^^ ^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 222 - impl<'de> Visitor<'de> for StringOrInt { 222 + impl Visitor<'_> for StringOrInt { |
ics-light-client-attack-freeze (interchain-security, cosmos)
The job running on runner GitHub Actions 3 has exceeded the maximum execution time of 20 minutes.
ics-light-client-attack (interchain-security, cosmos)
'https://cosmosnix-store.s3.us-east-2.amazonaws.com' does not appear to be a binary cache
ics-light-client-attack (interchain-security, cosmos)
download buffer is full; consider increasing the 'download-buffer-size' setting
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/config/auto.rs#L23
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/config/auto.rs#L23
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/config/validate.rs#L10
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack (interchain-security, cosmos): crates/relayer-cli/src/commands/create.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos)
'https://cosmosnix-store.s3.us-east-2.amazonaws.com' does not appear to be a binary cache
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/config/auto.rs#L23
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/config/validate.rs#L10
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/config/auto.rs#L23
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/config/validate.rs#L10
non-local `impl` definition, `impl` blocks should be written at the same level as their item
light-client-attack (gaia14, gaiad, cosmos): crates/relayer-cli/src/commands/create.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos)
'https://cosmosnix-store.s3.us-east-2.amazonaws.com' does not appear to be a binary cache
ics-double-sign (interchain-security, cosmos)
download buffer is full; consider increasing the 'download-buffer-size' setting
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/config/auto.rs#L23
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/config/auto.rs#L23
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/config/validate.rs#L10
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-double-sign (interchain-security, cosmos): crates/relayer-cli/src/commands/create.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/config/auto.rs#L23
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/config/validate.rs#L10
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/create.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos)
'https://cosmosnix-store.s3.us-east-2.amazonaws.com' does not appear to be a binary cache
ics-light-client-attack-freeze (interchain-security, cosmos)
download buffer is full; consider increasing the 'download-buffer-size' setting
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
ics-light-client-attack-freeze (interchain-security, cosmos): crates/relayer-cli/src/commands/config/auto.rs#L23
non-local `impl` definition, `impl` blocks should be written at the same level as their item