Add player permissions #24
Annotations
5 warnings
struct `GameConnectionResponse` is never constructed:
src/routes/connection/mod.rs#L19
warning: struct `GameConnectionResponse` is never constructed
--> src/routes/connection/mod.rs:19:8
|
19 | struct GameConnectionResponse {
| ^^^^^^^^^^^^^^^^^^^^^^
|
field `0` is never read:
src/errors/api.rs#L29
warning: field `0` is never read
--> src/errors/api.rs:29:14
|
29 | External(String),
| -------- ^^^^^^
| |
| field in this variant
|
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
29 | External(()),
| ~~
|
field `0` is never read:
src/errors/mod.rs#L12
warning: field `0` is never read
--> src/errors/mod.rs:12:19
|
12 | InvalidSha256(usize),
| ------------- ^^^^^
| |
| field in this variant
|
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
12 | InvalidSha256(()),
| ~~
|
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-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/
|
clippy_check
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|