This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
basic search test #505
Annotations
5 warnings
security_audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
security_audit
1 warnings found!
|
security_audit
Unknown warning kind unsound found, please, file a bug
|
useless conversion to the same type: `database::models::ids::UserId`:
src/routes/v2/teams.rs#L958
warning: useless conversion to the same type: `database::models::ids::UserId`
--> src/routes/v2/teams.rs:958:37
|
958 | User::clear_project_cache(&[delete_member.user_id.into()], &redis).await?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `delete_member.user_id`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
= note: `#[warn(clippy::useless_conversion)]` on by default
|
this `.into_iter()` call is equivalent to `.iter()` and will not consume the `slice`:
src/database/models/user_item.rs#L383
warning: this `.into_iter()` call is equivalent to `.iter()` and will not consume the `slice`
--> src/database/models/user_item.rs:383:22
|
383 | .into_iter()
| ^^^^^^^^^ help: call directly: `iter`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
= note: `#[warn(clippy::into_iter_on_ref)]` on by default
|