fix(deps): update rust crate clap to v4.5.29 #868
check.yml
on: push
changes
3s
Cargo MSRV
7m 9s
Cargo deny
6m 13s
Operation Version Upgrade
52s
Matrix: release
Annotations
16 errors and 40 warnings
this `map_or` is redundant:
src/config/builder/environment/exe.rs#L78
error: this `map_or` is redundant
--> src/config/builder/environment/exe.rs:78:33
|
78 | let is_lone_file_name = value.parent().map_or(false, |s| s.as_os_str().is_empty());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use is_some_and instead: `value.parent().is_some_and(|s| s.as_os_str().is_empty())`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
|
this `map_or` is redundant:
src/checkers/history/operation/v2.rs#L162
error: this `map_or` is redundant
--> src/checkers/history/operation/v2.rs:162:9
|
162 | / self.files
163 | | .get_pile(pile_name)
164 | | .map_or(false, |pile| pile.contains_file(rel_path, only_modified))
| |______________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
162 ~ self.files
163 + .get_pile(pile_name).is_some_and(|pile| pile.contains_file(rel_path, only_modified))
|
|
empty line after doc comment:
src/checkers/history/operation/v2.rs#L23
error: empty line after doc comment
--> src/checkers/history/operation/v2.rs:23:1
|
23 | / /// Errors that may occur while working with operation logs.
24 | |
| |_^
...
32 | pub struct OperationV2 {
| ---------------------- the comment documents this struct
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
note: the lint level is defined here
--> src/lib.rs:19:9
|
19 | #![deny(clippy::all)]
| ^^^^^^^^^^^
= note: `#[deny(clippy::empty_line_after_doc_comments)]` implied by `#[deny(clippy::all)]`
= help: if the empty line is unintentional remove it
help: if the documentation should include the empty line include it in the comment
|
24 | ///
|
|
this `map_or` is redundant:
src/checkers/history/operation/v1.rs#L48
error: this `map_or` is redundant
--> src/checkers/history/operation/v1.rs:48:55
|
48 | (Some(pile_name), Hoard::Named(piles)) => piles
| _______________________________________________________^
49 | | .get(pile_name)
50 | | .map_or(false, |pile| pile.0.contains_key(rel_path)),
| |____________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
note: the lint level is defined here
--> src/lib.rs:21:9
|
21 | #![deny(clippy::style)]
| ^^^^^^^^^^^^^
= note: `#[deny(clippy::unnecessary_map_or)]` implied by `#[deny(clippy::style)]`
help: use is_some_and instead
|
48 ~ (Some(pile_name), Hoard::Named(piles)) => piles
49 ~ .get(pile_name).is_some_and(|pile| pile.0.contains_key(rel_path)),
|
|
Check Commit (macos-latest):
src/test.rs#L49
missing documentation for an enum
|
Check Commit (macos-latest):
src/test.rs#L51
missing documentation for a variant
|
Check Commit (macos-latest):
src/test.rs#L53
missing documentation for a variant
|
Check Commit (macos-latest):
src/test.rs#L57
missing documentation for a struct
|
Check Commit (macos-latest)
could not compile `hoard` (lib test) due to 4 previous errors
|
Check Commit (macos-latest)
The process '/Users/runner/.cargo/bin/cargo' failed with exit code 101
|
Check Commit (ubuntu-latest)
The job was canceled because "macos-latest" failed.
|
Check Commit (ubuntu-latest)
The operation was canceled.
|
Check Commit (windows-latest)
The job was canceled because "macos-latest" failed.
|
Check Commit (windows-latest)
The operation was canceled.
|
Cargo deny
`idna` accepts Punycode labels that do not produce any non-ASCII when decoded
|
Cargo deny
The process '/home/runner/.cargo/bin/cargo' failed with exit code 105
|
Operation Version Upgrade
Cache not found for keys: v0-rust-operation_upgrade-Linux-b0db9221-57e2da66, v0-rust-operation_upgrade-Linux-b0db9221
|
Operation Version Upgrade
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/
|
Operation Version Upgrade
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/
|
Operation Version Upgrade
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/
|
Operation Version Upgrade
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/
|
Check Commit (macos-latest)
Cache not found for keys: v0-rust-check-stable-Darwin-6938bdfd-57e2da66, v0-rust-check-stable-Darwin-6938bdfd
|
Check Commit (macos-latest)
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/
|
Check Commit (macos-latest)
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/
|
Check Commit (macos-latest)
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/
|
Check Commit (macos-latest)
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/
|
Check Commit (ubuntu-latest)
Cache not found for keys: v0-rust-check-stable-Linux-b0db9221-57e2da66, v0-rust-check-stable-Linux-b0db9221
|
Check Commit (ubuntu-latest)
Unable to download grcov == latest from the tool cache: Error: Unexpected HTTP response: 403
|
Check Commit (ubuntu-latest)
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/
|
Check Commit (ubuntu-latest)
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/
|
Check Commit (ubuntu-latest)
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/
|
Check Commit (ubuntu-latest)
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/
|
Check Commit (windows-latest)
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/
|
Check Commit (windows-latest)
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/
|
Check Commit (windows-latest)
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/
|
Check Commit (windows-latest)
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/
|
Check Commit (windows-latest)
Cache not found for keys: v0-rust-check-stable-Windows_NT-eb1e6b39-57e2da66, v0-rust-check-stable-Windows_NT-eb1e6b39
|
Cargo deny
Unable to download cargo-deny == latest from the tool cache: Error: Unexpected HTTP response: 403
|
Cargo deny
Unable to download cargo-make == latest from the tool cache: Error: Unexpected HTTP response: 403
|
Cargo deny
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 deny
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 deny
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 deny
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 deny
found 2 duplicate entries for crate 'regex-automata'
|
Cargo deny
found 2 duplicate entries for crate 'regex-syntax'
|
Cargo deny
found 2 duplicate entries for crate 'windows'
|
Cargo deny
found 2 duplicate entries for crate 'windows-core'
|
Cargo deny
found 2 duplicate entries for crate 'windows-sys'
|
Cargo deny
detected yanked crate (try `cargo update -p scc`)
|
Cargo deny
detected yanked crate (try `cargo update -p sdd`)
|
Cargo MSRV
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 MSRV
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 MSRV
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 MSRV
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 MSRV
Unable to download cargo-make == latest from the tool cache: Error: Unexpected HTTP response: 403
|
Cargo MSRV
Unable to download cargo-msrv == latest from the tool cache: Error: Unexpected HTTP response: 403
|