Skip to content

update repo links #1482

update repo links

update repo links #1482

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

check.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

7 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; |
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, 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 `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/