Skip to content

updated game connect plugin #26

updated game connect plugin

updated game connect plugin #26

Triggered via push December 5, 2023 11:19
Status Success
Total duration 15s
Artifacts

publish.yml

on: push
publish
8s
publish
Fit to window
Zoom out
Zoom in

Annotations

13 warnings
publish
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/github-script@v3. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
publish
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/
publish
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/
publish
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/
publish
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/
publish
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/
publish
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/
usage of an `Arc` that is not `Send` or `Sync`: src/helpers.rs#L92
warning: usage of an `Arc` that is not `Send` or `Sync` --> src/helpers.rs:92:19 | 92 | let closure = Arc::new(Closure::new(func2)); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `Closure<dyn Fn(JsValue)>` = note: the trait `Sync` is not implemented for `Closure<dyn Fn(JsValue)>` = note: required for `Arc<Closure<dyn Fn(JsValue)>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync = note: `#[warn(clippy::arc_with_non_send_sync)]` on by default
unneeded sub `cfg` when there is only one condition: src/status_bar.rs#L42
warning: unneeded sub `cfg` when there is only one condition --> src/status_bar.rs:42:11 | 42 | #[cfg(any(feature = "android"))] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "android"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg
unneeded sub `cfg` when there is only one condition: src/status_bar.rs#L33
warning: unneeded sub `cfg` when there is only one condition --> src/status_bar.rs:33:11 | 33 | #[cfg(any(feature = "android"))] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "android"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg
unneeded sub `cfg` when there is only one condition: src/extern_functions.rs#L269
warning: unneeded sub `cfg` when there is only one condition --> src/extern_functions.rs:269:7 | 269 | #[cfg(all(feature = "rate_plugin"))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "rate_plugin"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg
unneeded sub `cfg` when there is only one condition: src/app.rs#L104
warning: unneeded sub `cfg` when there is only one condition --> src/app.rs:104:11 | 104 | #[cfg(any(feature = "android"))] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "android"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg
unneeded sub `cfg` when there is only one condition: src/app.rs#L96
warning: unneeded sub `cfg` when there is only one condition --> src/app.rs:96:11 | 96 | #[cfg(any(feature = "android"))] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "android"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg = note: `#[warn(clippy::non_minimal_cfg)]` on by default