Merge branch 'azalea-rs:main' into custom_auth #67
Annotations
7 warnings
very complex type used. Consider factoring parts into `type` definitions:
azalea/src/pathfinder/mod.rs#L524
warning: very complex type used. Consider factoring parts into `type` definitions
--> azalea/src/pathfinder/mod.rs:524:16
|
524 | mut query: Query<(
| ________________^
525 | | Entity,
526 | | &mut Pathfinder,
527 | | &mut ExecutingPath,
... |
531 | | &Inventory,
532 | | )>,
| |______^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
|
unneeded late initialization:
azalea/src/pathfinder/mod.rs#L343
warning: unneeded late initialization
--> azalea/src/pathfinder/mod.rs:343:5
|
343 | let path;
| ^^^^^^^^^ created here
...
378 | path = movements.into_iter().collect::<VecDeque<_>>();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ initialised here
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_late_init
= note: `#[warn(clippy::needless_late_init)]` on by default
help: move the declaration `path` here
|
343 ~
344 |
...
377 |
378 ~ let path = movements.into_iter().collect::<VecDeque<_>>();
|
|
clippy_check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|