Update README.md #1048
main.yml
on: push
Cargo fmt
24s
Cargo clippy
1m 17s
Cargo audit
23s
Cargo test
5m 1s
Matrix: Cargo build & test
Annotations
18 errors and 108 warnings
Cargo audit
Critical vulnerabilities were found, marking check as failed
|
empty String is being created manually:
libcraft/items/src/item_stack.rs#L380
error: empty String is being created manually
--> libcraft/items/src/item_stack.rs:380:19
|
380 | lore: "".to_owned(),
| ^^^^^^^^^^^^^ help: consider using: `String::new()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_string_new
|
variables can be used directly in the `format!` string:
libcraft/items/src/item_stack.rs#L369
error: variables can be used directly in the `format!` string
--> libcraft/items/src/item_stack.rs:369:9
|
369 | write!(f, "{:?}", self)
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[deny(clippy::uninlined_format_args)]` implied by `#[deny(warnings)]`
help: change this to
|
369 - write!(f, "{:?}", self)
369 + write!(f, "{self:?}")
|
|
empty String is being created manually:
libcraft/items/src/item_stack.rs#L65
error: empty String is being created manually
--> libcraft/items/src/item_stack.rs:65:23
|
65 | lore: "".to_owned(),
| ^^^^^^^^^^^^^ help: consider using: `String::new()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_string_new
= note: `#[deny(clippy::manual_string_new)]` implied by `#[deny(warnings)]`
|
`IntoIterator` implemented for a reference type without an `iter_mut` method:
libcraft/items/src/inventory_slot.rs#L253
error: `IntoIterator` implemented for a reference type without an `iter_mut` method
--> libcraft/items/src/inventory_slot.rs:253:1
|
253 | / impl<'a> IntoIterator for &'a mut InventorySlot {
254 | | type Item = &'a mut ItemStack;
255 | |
256 | | type IntoIter = std::option::IntoIter<&'a mut ItemStack>;
... |
260 | | }
261 | | }
| |_^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_without_iter
help: consider implementing `iter_mut`
|
253 +
254 + impl InventorySlot {
255 + fn iter_mut(&mut self) -> std::option::IntoIter<&'a mut ItemStack> {
256 + <&mut Self as IntoIterator>::into_iter(self)
257 + }
258 + }
|
|
`IntoIterator` implemented for a reference type without an `iter` method:
libcraft/items/src/inventory_slot.rs#L244
error: `IntoIterator` implemented for a reference type without an `iter` method
--> libcraft/items/src/inventory_slot.rs:244:1
|
244 | / impl<'a> IntoIterator for &'a InventorySlot {
245 | | type Item = &'a ItemStack;
246 | |
247 | | type IntoIter = std::option::IntoIter<&'a ItemStack>;
... |
251 | | }
252 | | }
| |_^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_without_iter
note: the lint level is defined here
--> libcraft/items/src/lib.rs:2:9
|
2 | #![deny(warnings)]
| ^^^^^^^^
= note: `#[deny(clippy::into_iter_without_iter)]` implied by `#[deny(warnings)]`
help: consider implementing `iter`
|
244 +
245 + impl InventorySlot {
246 + fn iter(&self) -> std::option::IntoIter<&'a ItemStack> {
247 + <&Self as IntoIterator>::into_iter(self)
248 + }
249 + }
|
|
Cargo clippy
Clippy had exited with the 101 exit code
|
Cargo test:
quill/common/src/component.rs#L330
unknown start of token: `
|
Cargo test:
quill/common/src/component.rs#L330
unknown start of token: `
|
Cargo test:
quill/common/src/component.rs#L330
unknown start of token: `
|
Cargo test:
quill/common/src/component.rs#L330
unknown start of token: `
|
Cargo test:
quill/common/src/component.rs#L330
expected one of `.`, `;`, `?`, `}`, or an operator, found `:`
|
Cargo test
aborting due to 5 previous errors
|
Cargo test
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
reference to packed field is unaligned
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
reference to packed field is unaligned
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
could not compile `ntapi` (lib) due to 2 previous errors
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
The process 'C:\Users\runneradmin\.cargo\bin\cargo.exe' failed with exit code 101
|
Cargo audit
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/audit-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Cargo audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/audit-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/
|
Cargo audit
1 vulnerabilities found!
|
Cargo audit
4 warnings found!
|
Cargo audit
Unknown warning kind unsound found, please, file a bug
|
Cargo audit
The `save-state` 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/
|
Cargo audit
The `save-state` 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/
|
Cargo audit
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/
|
Cargo audit
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/
|
Cargo audit
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/
|
Cargo audit
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/
|
Cargo audit
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/
|
Cargo fmt
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Cargo fmt
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Cargo fmt
The `save-state` 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/
|
Cargo fmt
The `save-state` 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/
|
Cargo fmt
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/
|
Cargo fmt
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/
|
Cargo fmt
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/
|
Cargo fmt
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/
|
Cargo fmt
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/
|
Cargo clippy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Cargo clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@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/
|
Cargo clippy
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/
|
Cargo clippy
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/
|
Cargo clippy
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/
|
Cargo clippy
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/
|
Cargo clippy
The `save-state` 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/
|
Cargo clippy
The `save-state` 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/
|
Cargo clippy
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/
|
Cargo test
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Cargo test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Cargo test
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/
|
Cargo test
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/
|
Cargo test
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/
|
Cargo test
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/
|
Cargo test
virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
|
Cargo test:
feather/server/src/systems/gamemode.rs#L33
variable does not need to be mutable
|
Cargo test:
feather/server/src/systems/gamemode.rs#L34
variable does not need to be mutable
|
Cargo test:
feather/server/src/systems/gamemode.rs#L35
variable does not need to be mutable
|
Cargo test:
feather/server/src/systems/gamemode.rs#L36
variable does not need to be mutable
|
Cargo test:
feather/server/src/systems/gamemode.rs#L37
variable does not need to be mutable
|
Cargo test
`feather-server` (lib) generated 5 warnings (run `cargo fix --lib -p feather-server` to apply 5 suggestions)
|
Cargo test
the following packages contain code that will be rejected by a future version of Rust: cranelift-codegen-meta v0.76.0, nom v5.1.2, wasmparser v0.78.2
|
Cargo test
The `save-state` 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/
|
Cargo test
The `save-state` 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/
|
Cargo test
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/
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true):
feather/server/src/systems/gamemode.rs#L33
variable does not need to be mutable
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true):
feather/server/src/systems/gamemode.rs#L34
variable does not need to be mutable
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true):
feather/server/src/systems/gamemode.rs#L35
variable does not need to be mutable
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true):
feather/server/src/systems/gamemode.rs#L36
variable does not need to be mutable
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true):
feather/server/src/systems/gamemode.rs#L37
variable does not need to be mutable
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
`feather-server` (lib) generated 5 warnings (run `cargo fix --lib -p feather-server` to apply 5 suggestions)
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
the following packages contain code that will be rejected by a future version of Rust: cranelift-codegen-meta v0.76.0, nom v5.1.2, wasmparser v0.78.2
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
The `save-state` 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/
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
The `save-state` 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/
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
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/
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
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/
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
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/
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
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/
|
Cargo build & test (ubuntu-latest, x86_64-unknown-linux-gnu, true)
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/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
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/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
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/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
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/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
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/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
The `save-state` 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/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
The `save-state` 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/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
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/
|
Cargo build & test (windows-latest, x86_64-pc-windows-msvc, false)
virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
The `save-state` 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/
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
The `save-state` 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/
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L33
variable does not need to be mutable
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L34
variable does not need to be mutable
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L35
variable does not need to be mutable
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L36
variable does not need to be mutable
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L37
variable does not need to be mutable
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
`feather-server` (lib) generated 5 warnings (run `cargo fix --lib -p feather-server` to apply 5 suggestions)
|
Cargo build & test (macos-latest, aarch64-apple-darwin, false)
the following packages contain code that will be rejected by a future version of Rust: cranelift-codegen-meta v0.76.0, nom v5.1.2, wasmparser v0.78.2
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, Swatinem/rust-cache@v1, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
The `save-state` 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/
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
The `save-state` 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/
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
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/
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L33
variable does not need to be mutable
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L34
variable does not need to be mutable
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L35
variable does not need to be mutable
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L36
variable does not need to be mutable
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false):
feather/server/src/systems/gamemode.rs#L37
variable does not need to be mutable
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
`feather-server` (lib) generated 5 warnings (run `cargo fix --lib -p feather-server` to apply 5 suggestions)
|
Cargo build & test (macos-latest, x86_64-apple-darwin, false)
the following packages contain code that will be rejected by a future version of Rust: cranelift-codegen-meta v0.76.0, nom v5.1.2, wasmparser v0.78.2
|