Update penumbra deps to v80 #90
rust.yml
on: pull_request
fmt
27s
clippy-all-features
7m 52s
clippy-no-default-features
8m 5s
test-stable
10m 13s
msrv
9m 18s
Annotations
24 errors and 5 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 {
|
|
clippy-all-features
Clippy had exited with the 101 exit code
|
clippy-no-default-features
Clippy had exited with the 101 exit code
|
test-stable:
crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
test-stable:
crates/relayer-cli/src/commands.rs#L44
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
test-stable:
crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
test-stable:
crates/relayer-cli/src/commands/clear.rs#L25
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
test-stable:
crates/relayer-cli/src/commands/clear.rs#L33
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
test-stable:
crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
test-stable:
crates/relayer-cli/src/commands/config.rs#L9
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
test-stable:
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
|
test-stable:
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
|
test-stable:
crates/relayer-cli/src/commands/create.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
fmt
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
clippy-all-features
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
clippy-no-default-features
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
msrv
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
test-stable
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|