chore: update penumbra deps to 0.78.0 #85
GitHub Actions / clippy-all-features
failed
Jun 26, 2024 in 0s
clippy-all-features
2 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 2 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.79.0 (129f3b996 2024-06-10)
- cargo 1.79.0 (ffa9cf99a 2024-06-03)
- clippy 0.1.79 (129f3b9 2024-06-10)
Annotations
Check failure on line 398 in crates/relayer-types/src/core/ics03_connection/connection.rs
github-actions / clippy-all-features
function cannot return without recursing
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)]`
Check failure on line 5 in crates/relayer-types/src/core/ics03_connection/connection.rs
github-actions / clippy-all-features
importing legacy numeric constants
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)]`
Loading