Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

chore(deps): bump actions/cache from 4.0.1 to 4.0.2 #165

chore(deps): bump actions/cache from 4.0.1 to 4.0.2

chore(deps): bump actions/cache from 4.0.1 to 4.0.2 #165

GitHub Actions / Clippy Output failed Mar 25, 2024 in 1s

Clippy Output

9 errors, 1 warning

Details

Results

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

Versions

  • rustc 1.77.0 (aedd173a2 2024-03-17)
  • cargo 1.77.0 (3fe68eabf 2024-02-29)
  • clippy 0.1.77 (aedd173 2024-03-17)

Annotations

Check failure on line 92 in src/lib/paraswap.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
  --> src/lib/paraswap.rs:92:28
   |
92 |         let value: Value = jql::walker(&json, mix_selector)?;
   |                            ^^^ use of undeclared crate or module `jql`

Check failure on line 58 in src/lib/paraswap.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
  --> src/lib/paraswap.rs:58:21
   |
58 |         let value = jql::walker(&json, mix_selector)?;
   |                     ^^^ use of undeclared crate or module `jql`

Check failure on line 77 in src/lib/coingecko.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
  --> src/lib/coingecko.rs:77:28
   |
77 |         let value: Value = jql::walker(&json, mix_selector)?;
   |                            ^^^ use of undeclared crate or module `jql`

Check failure on line 57 in src/lib/coingecko.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
  --> src/lib/coingecko.rs:57:21
   |
57 |         let value = jql::walker(&json, mix_selector)?;
   |                     ^^^ use of undeclared crate or module `jql`

Check failure on line 133 in src/lib/erc20.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
   --> src/lib/erc20.rs:133:19
    |
133 |     let results = jql::walker(&json, mix_selector)?;
    |                   ^^^ use of undeclared crate or module `jql`

Check failure on line 123 in src/lib/erc20.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
   --> src/lib/erc20.rs:123:19
    |
123 |     let message = jql::walker(&json, message_selector)?;
    |                   ^^^ use of undeclared crate or module `jql`

Check failure on line 96 in src/lib/erc20.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
  --> src/lib/erc20.rs:96:19
   |
96 |     let results = jql::walker(&json, mix_selector)?;
   |                   ^^^ use of undeclared crate or module `jql`

Check failure on line 171 in src/lib/erc20.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
   --> src/lib/erc20.rs:171:19
    |
171 |     let results = jql::walker(&json, mix_selector)?;
    |                   ^^^ use of undeclared crate or module `jql`

Check failure on line 162 in src/lib/erc20.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

failed to resolve: use of undeclared crate or module `jql`

error[E0433]: failed to resolve: use of undeclared crate or module `jql`
   --> src/lib/erc20.rs:162:19
    |
162 |     let message = jql::walker(&json, message_selector)?;
    |                   ^^^ use of undeclared crate or module `jql`

Check warning on line 1 in src/main.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

found module declaration for lib.rs

warning: found module declaration for lib.rs
 --> src/main.rs:1:1
  |
1 | mod lib;
  | ^^^^^^^^
  |
  = note: lib.rs is the root of this crate's library target
  = help: to refer to it from other targets, use the library's name as the path
  = note: `#[warn(special_module_name)]` on by default