Skip to content

improve pathfinder path execution #288

improve pathfinder path execution

improve pathfinder path execution #288

Triggered via push October 7, 2023 05:35
Status Success
Total duration 2m 42s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

doc.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

8 warnings
use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified: azalea/src/container.rs#L25
warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified --> azalea/src/container.rs:25:5 | 25 | async fn open_container(&mut self, pos: BlockPos) -> Option<ContainerHandle>; | ^^^^^ | = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future` help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send` | 25 - async fn open_container(&mut self, pos: BlockPos) -> Option<ContainerHandle>; 25 + fn open_container(&mut self, pos: BlockPos) -> impl std::future::Future<Output = Option<ContainerHandle>> + Send; |
use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified: azalea/src/bot.rs#L84
warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified --> azalea/src/bot.rs:84:5 | 84 | async fn mine(&mut self, position: BlockPos); | ^^^^^ | = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future` = note: `#[warn(async_fn_in_trait)]` on by default help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send` | 84 - async fn mine(&mut self, position: BlockPos); 84 + fn mine(&mut self, position: BlockPos) -> impl std::future::Future<Output = ()> + Send; |
Invalid file permissions automatically fixed
mode of './target/doc/.lock' changed from 0600 (rw-------) to 0644 (rw-r--r--)
deploy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
deploy
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/
deploy
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/
deploy
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/
deploy
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/