chore(deps): lock file maintenance #5671
Annotations
3 errors
|
msrv
Process completed with exit code 101.
|
|
rustfmt-clippy
Error: Clippy has exited with exit code 101
|
|
called `unwrap` on `self.limit` after checking its variant with `is_some`:
src/api/internal.rs#L467
error: called `unwrap` on `self.limit` after checking its variant with `is_some`
--> src/api/internal.rs:467:35
|
466 | if !ignore_limit && self.limit.is_some() {
| -------------------- the check is happening here
467 | next_limit = next_limit.min(self.limit.unwrap());
| ^^^^^^^^^^^^^^^^^^^
|
= help: try using `match`
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#unnecessary_unwrap
= note: `-D clippy::unnecessary-unwrap` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_unwrap)]`
|