Will-Low

Results 5 issues of Will-Low

Per [RFC 7519 § 5.1](https://datatracker.ietf.org/doc/html/rfc7519#section-5.1), the `typ` field value is recommended to be set to "JWT". However, not all JWT-issuing systems follow this convention; for example, [Identity Server 4](https://github.com/IdentityServer/IdentityServer4) uses...

I've been using the `--kindle` option. When converting from EPUB to MOBI with Calibre (using the `Ignore margins` setting), bullets continue to be placed on a different line than sentences....

wontfix

I've run into the case several times when unit testing where I need to return a `Response` whose extensions contain an `HttpInfo`. However, since the fields on `HttpInfo` are private,...

S-feature

I tried running the LLVM code coverage report against this code using `cargo llvm-cov`: ```rust async fn my_async_fn() -> bool { another_async_fn() .await } async fn another_async_fn() -> bool {...

C-bug
A-code-coverage

### Summary When an immutable reference is held, Clippy still suggests using `get_mut()` instead of `lock()` for Mutexes, even though this does not work, since it cannot borrow a mutable...

C-bug
I-false-positive