updating dependencies #35
Annotations
1 error and 4 warnings
build
Action failed with error: Error: Unable to locate executable file: cachix. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.
|
build
The following actions uses node12 which is deprecated and will be forced to run on node16: cachix/install-nix-action@v17, cachix/cachix-action@v10. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
build
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/
|
use of `or_insert_with` to construct default value:
src/state.rs#L287
warning: use of `or_insert_with` to construct default value
--> src/state.rs:287:14
|
287 | .or_insert_with(HashMap::new)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `or_default()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_or_default
|
use of `or_insert_with` to construct default value:
src/state.rs#L213
warning: use of `or_insert_with` to construct default value
--> src/state.rs:213:14
|
213 | .or_insert_with(HashMap::new)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `or_default()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_or_default
= note: `#[warn(clippy::unwrap_or_default)]` on by default
|