Skip to content

bump astria and penumbra deps #4

bump astria and penumbra deps

bump astria and penumbra deps #4

GitHub Actions / clippy-all-features failed May 20, 2024 in 0s

clippy-all-features

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
Note 0
Help 0

Versions

  • rustc 1.78.0 (9b00956e5 2024-04-29)
  • cargo 1.78.0 (54d8815d0 2024-03-26)
  • clippy 0.1.78 (9b00956 2024-04-29)

Annotations

Check failure on line 114 in crates/relayer-types/src/core/ics23_commitment/merkle.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

assigning the result of `Clone::clone()` may be inefficient

error: assigning the result of `Clone::clone()` may be inefficient
   --> crates/relayer-types/src/core/ics23_commitment/merkle.rs:114:21
    |
114 |                     value = subroot.clone();
    |                     ^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `value.clone_from(&subroot)`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
    = note: `-D clippy::assigning-clones` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::assigning_clones)]`