Skip to content

Initial implementation of auth caching #300

Initial implementation of auth caching

Initial implementation of auth caching #300

GitHub Actions / clippy failed Nov 9, 2023 in 1s

clippy

4 errors

Details

Results

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

Versions

  • rustc 1.73.0 (cc66ad468 2023-10-03)
  • cargo 1.73.0 (9c4383fb5 2023-08-26)
  • clippy 0.1.73 (cc66ad4 2023-10-03)

Annotations

Check failure on line 10 in src/client.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `cached::Cached`

error: unused import: `cached::Cached`
  --> src/client.rs:10:5
   |
10 | use cached::Cached;
   |     ^^^^^^^^^^^^^^
   |
   = note: `-D unused-imports` implied by `-D warnings`

Check failure on line 123 in src/client.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find function `auth_prime_cache` in module `auth`

error[E0425]: cannot find function `auth_prime_cache` in module `auth`
   --> src/client.rs:123:37
    |
123 |         let new_token = match auth::auth_prime_cache(self).await {
    |                                     ^^^^^^^^^^^^^^^^ not found in `auth`

Check failure on line 1 in src/client.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `crate::auth::AUTH`

error[E0432]: unresolved import `crate::auth::AUTH`
 --> src/client.rs:1:5
  |
1 | use crate::auth::AUTH;
  |     ^^^^^^^^^^^^^^^^^ no `AUTH` in `auth`

Check failure on line 8 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

file not found for module `auth`

error[E0583]: file not found for module `auth`
 --> src/lib.rs:8:1
  |
8 | mod auth;
  | ^^^^^^^^^
  |
  = help: to create the module `auth`, create file "src/auth.rs" or "src/auth/mod.rs"