Skip to content

start adding mining to pathfinder #300

start adding mining to pathfinder

start adding mining to pathfinder #300

Triggered via push October 11, 2023 04:21
Status Success
Total duration 2m 34s
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

9 warnings
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/
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#L85
warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified --> azalea/src/bot.rs:85:5 | 85 | 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` | 85 - async fn mine(&mut self, position: BlockPos); 85 + fn mine(&mut self, position: BlockPos) -> impl std::future::Future<Output = ()> + Send; |
this expression creates a reference which is immediately dereferenced by the compiler: azalea/src/auto_tool.rs#L69
warning: this expression creates a reference which is immediately dereferenced by the compiler --> azalea/src/auto_tool.rs:69:17 | 69 | &menu, | ^^^^^ help: change this to: `menu` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `#[warn(clippy::needless_borrow)]` on by default