Skip to content

Update rust to 1.81 #177

Update rust to 1.81

Update rust to 1.81 #177

GitHub Actions / clippy failed Sep 27, 2024 in 0s

clippy

2 errors

Details

Results

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

Versions

  • rustc 1.81.0 (eeb90cda1 2024-09-04)
  • cargo 1.81.0 (2dbb1af80 2024-08-20)
  • clippy 0.1.81 (eeb90cd 2024-09-04)

Annotations

Check failure on line 844 in massa-ledger-exports/src/ledger_changes.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

error: doc list item without indentation
   --> massa-ledger-exports/src/ledger_changes.rs:844:9
    |
844 |     /// when / if we allow full entry Delete given the current LedgerChanges::Delete handling. In that case, a rework may be necessary.
    |         ^
    |
    = help: if this is supposed to be its own paragraph, add a blank line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
    |
844 |     ///   when / if we allow full entry Delete given the current LedgerChanges::Delete handling. In that case, a rework may be necessary.
    |         ++

Check failure on line 8 in massa-pos-exports/src/test_exports/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `config::*`

error: unused import: `config::*`
  --> massa-pos-exports/src/test_exports/mod.rs:8:9
   |
8  | pub use config::*;
   |         ^^^^^^^^^
   |
help: if this is a test module, consider adding a `#[cfg(test)]` to the containing module
  --> massa-pos-exports/src/lib.rs:31:1
   |
31 | pub mod test_exports;
   | ^^^^^^^^^^^^^^^^^^^^^
   = note: `-D unused-imports` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(unused_imports)]`