Skip to content
GitHub Actions / clippy failed Nov 29, 2023 in 1s

clippy

2 errors

Details

Results

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

Versions

  • rustc 1.74.0 (79e9716c9 2023-11-13)
  • cargo 1.74.0 (ecb9851af 2023-10-18)
  • clippy 0.1.74 (79e9716 2023-11-13)

Annotations

Check failure on line 457 in src/token/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

very complex type used. Consider factoring parts into `type` definitions

error: very complex type used. Consider factoring parts into `type` definitions
   --> src/token/mod.rs:457:10
    |
457 |     ) -> Result<Token<P, Signed<H, A, S>, Fmt>, TokenSigningError>
    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
    = note: `-D clippy::type-complexity` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::type_complexity)]`

Check failure on line 185 in src/jose/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

type parameter `S` goes unused in function definition

error: type parameter `S` goes unused in function definition
   --> src/jose/mod.rs:185:41
    |
185 |     pub(crate) fn into_signed_header<A, S>(
    |                                         ^
    |
    = help: consider removing the parameter
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
    = note: `-D clippy::extra-unused-type-parameters` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::extra_unused_type_parameters)]`