Skip to content

deps: bump some dependencies and rust version #239

deps: bump some dependencies and rust version

deps: bump some dependencies and rust version #239

GitHub Actions / clippy failed Aug 22, 2024 in 0s

clippy

10 errors

Details

Results

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

Versions

  • rustc 1.80.0 (051478957 2024-07-21)
  • cargo 1.80.0 (376290515 2024-07-16)
  • clippy 0.1.80 (0514789 2024-07-21)

Annotations

Check failure on line 170 in src/cli/advanced/near.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

you should put bare URLs between `<`/`>` or make a proper Markdown link

error: you should put bare URLs between `<`/`>` or make a proper Markdown link
   --> src/cli/advanced/near.rs:170:18
    |
170 |         /// (see https://nomicon.io/Standards/Tokens/FungibleToken/Metadata for fields).
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `<https://nomicon.io/Standards/Tokens/FungibleToken/Metadata>`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown

Check failure on line 148 in src/cli/advanced/near.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

you should put bare URLs between `<`/`>` or make a proper Markdown link

error: you should put bare URLs between `<`/`>` or make a proper Markdown link
   --> src/cli/advanced/near.rs:148:17
    |
148 |         /// See https://chainlist.org/ for a list of taken chain IDs.
    |                 ^^^^^^^^^^^^^^^^^^^^^ help: try: `<https://chainlist.org>`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
note: the lint level is defined here
   --> src/main.rs:1:9
    |
1   | #![deny(clippy::pedantic, clippy::nursery)]
    |         ^^^^^^^^^^^^^^^^
    = note: `#[deny(clippy::doc_markdown)]` implied by `#[deny(clippy::pedantic)]`

Check failure on line 170 in src/cli/advanced/near.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

you should put bare URLs between `<`/`>` or make a proper Markdown link

error: you should put bare URLs between `<`/`>` or make a proper Markdown link
   --> src/cli/advanced/near.rs:170:18
    |
170 |         /// (see https://nomicon.io/Standards/Tokens/FungibleToken/Metadata for fields).
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `<https://nomicon.io/Standards/Tokens/FungibleToken/Metadata>`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown

Check failure on line 148 in src/cli/advanced/near.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

you should put bare URLs between `<`/`>` or make a proper Markdown link

error: you should put bare URLs between `<`/`>` or make a proper Markdown link
   --> src/cli/advanced/near.rs:148:17
    |
148 |         /// See https://chainlist.org/ for a list of taken chain IDs.
    |                 ^^^^^^^^^^^^^^^^^^^^^ help: try: `<https://chainlist.org>`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
note: the lint level is defined here
   --> src/main.rs:1:9
    |
1   | #![deny(clippy::pedantic, clippy::nursery)]
    |         ^^^^^^^^^^^^^^^^
    = note: `#[deny(clippy::doc_markdown)]` implied by `#[deny(clippy::pedantic)]`

Check failure on line 186 in src/transaction_reader/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `0` is never read

error: field `0` is never read
   --> src/transaction_reader/mod.rs:186:11
    |
186 |     Other(String),
    |     ----- ^^^^^^
    |     |
    |     field in this variant
    |
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
    |
186 |     Other(()),
    |           ~~

Check failure on line 77 in src/client/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `0` is never read

error: field `0` is never read
  --> src/client/mod.rs:77:13
   |
77 |     Failure(near_primitives::errors::TxExecutionError),
   |     ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     field in this variant
   |
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
   |
77 |     Failure(()),
   |             ~~

Check failure on line 76 in src/client/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `0` is never read

error: field `0` is never read
  --> src/client/mod.rs:76:12
   |
76 |     Result(SubmitResult),
   |     ------ ^^^^^^^^^^^^
   |     |
   |     field in this variant
   |
   = note: `-D dead-code` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(dead_code)]`
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
   |
76 |     Result(()),
   |            ~~

Check failure on line 186 in src/transaction_reader/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `0` is never read

error: field `0` is never read
   --> src/transaction_reader/mod.rs:186:11
    |
186 |     Other(String),
    |     ----- ^^^^^^
    |     |
    |     field in this variant
    |
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
    |
186 |     Other(()),
    |           ~~

Check failure on line 77 in src/client/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `0` is never read

error: field `0` is never read
  --> src/client/mod.rs:77:13
   |
77 |     Failure(near_primitives::errors::TxExecutionError),
   |     ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     field in this variant
   |
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
   |
77 |     Failure(()),
   |             ~~

Check failure on line 76 in src/client/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `0` is never read

error: field `0` is never read
  --> src/client/mod.rs:76:12
   |
76 |     Result(SubmitResult),
   |     ------ ^^^^^^^^^^^^
   |     |
   |     field in this variant
   |
   = note: `-D dead-code` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(dead_code)]`
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
   |
76 |     Result(()),
   |            ~~