Skip to content

feat: seperate solving from installing (#1030) #542

feat: seperate solving from installing (#1030)

feat: seperate solving from installing (#1030) #542

GitHub Actions / clippy succeeded Sep 6, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (2)

rust-tests/src/lib.rs|234 col 28| error: unnecessary use of get("depends").is_none()
--> rust-tests/src/lib.rs:234:28
|
234 | assert!(index_json.get("depends").is_none());
| -----------^^^^^^^^^^^^^^^^^^^^^^^^
| |
| help: replace it with: !index_json.contains_key("depends")
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check
= note: -D clippy::unnecessary-get-then-check implied by -D warnings
= help: to override -D warnings add #[allow(clippy::unnecessary_get_then_check)]
rust-tests/src/lib.rs|256 col 28| error: unnecessary use of get("depends").is_none()
--> rust-tests/src/lib.rs:256:28
|
256 | assert!(index_json.get("depends").is_none());
| -----------^^^^^^^^^^^^^^^^^^^^^^^^
| |
| help: replace it with: !index_json.contains_key("depends")
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check