.github/workflows/workspace.yml #968
Annotations
4 errors and 52 warnings
|
build-and-test (beta, macos-12, x86_64-apple-darwin)
This request was automatically failed because there were no enabled runners online to process the request for more than 1 days.
|
|
build-and-test (1.75.0, macos-12, x86_64-apple-darwin)
This request was automatically failed because there were no enabled runners online to process the request for more than 1 days.
|
|
build-and-test (stable, macos-12, x86_64-apple-darwin)
This request was automatically failed because there were no enabled runners online to process the request for more than 1 days.
|
|
build-and-test (nightly, macos-12, x86_64-apple-darwin)
This request was automatically failed because there were no enabled runners online to process the request for more than 1 days.
|
|
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (1.75.0, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (1.75.0, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (1.75.0, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (1.75.0, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L29
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:29:13
|
29 | / std::io::Error::new(
30 | | std::io::ErrorKind::Other,
31 | | format!("error sending HTTP request: {:?}", e),
32 | | ),
| |_____________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
= note: `#[warn(clippy::io_other_error)]` on by default
help: use `std::io::Error::other`
|
29 ~ std::io::Error::other(
30 ~ format!("error sending HTTP request: {:?}", e),
|
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L48
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:48:17
|
48 | / std::io::Error::new(
49 | | std::io::ErrorKind::Other,
50 | | format!("bad HTTP status code: {:?}", e),
51 | | ),
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
48 ~ std::io::Error::other(
49 ~ format!("bad HTTP status code: {:?}", e),
|
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L58
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:58:26
|
58 | .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{:?}", e)))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
58 - .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{:?}", e)))
58 + .map_err(|e| std::io::Error::other(format!("{:?}", e)))
|
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/io.rs#L167
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/io.rs:167:56
|
167 | ... return Poll::Ready(Err(std::io::Error::new(
| ______________________________________________^
168 | | ... std::io::ErrorKind::Other,
169 | | ... format!(
170 | | ... "digest mismatch of retrieved content: expected {}, got {}",
... |
173 | | ... ),
174 | | ... )));
| |_______________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
167 ~ return Poll::Ready(Err(std::io::Error::other(
168 ~ format!(
|
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/io.rs#L179
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/io.rs:179:48
|
179 | return Poll::Ready(Err(std::io::Error::new(
| ________________________________________________^
180 | | std::io::ErrorKind::Other,
181 | | format!(
182 | | "extra bytes read: expected {}; got {}",
183 | | this.expected_size, this.bytes_read
184 | | ),
185 | | )));
| |_________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
179 ~ return Poll::Ready(Err(std::io::Error::other(
180 ~ format!(
|
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/io.rs#L248
warning: this can be `std::io::Error::other(_)`
--> debian-packaging/src/io.rs:248:56
|
248 | ... return Poll::Ready(Err(std::io::Error::new(
| ______________________________________________^
249 | | ... std::io::ErrorKind::Other,
250 | | ... format!(
251 | | ... "digest mismatch of retrieved content: expected {}, got {}",
... |
254 | | ... ),
255 | | ... )));
| |_______________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
= note: `#[warn(clippy::io_other_error)]` on by default
help: use `std::io::Error::other`
|
248 ~ return Poll::Ready(Err(std::io::Error::other(
249 ~ format!(
|
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/io.rs#L260
warning: this can be `std::io::Error::other(_)`
--> debian-packaging/src/io.rs:260:48
|
260 | return Poll::Ready(Err(std::io::Error::new(
| ________________________________________________^
261 | | std::io::ErrorKind::Other,
262 | | format!(
263 | | "extra bytes read: expected {}; got {}",
264 | | this.expected_size, this.bytes_read
265 | | ),
266 | | )));
| |_________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
260 ~ return Poll::Ready(Err(std::io::Error::other(
261 ~ format!(
|
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/repository/builder.rs#L631
warning: `to_string` applied to a type that implements `Display` in `format!` args
--> debian-packaging/src/repository/builder.rs:631:46
|
631 | .map(|p| Ok(format!("{}\n", p.to_string()))),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
= note: `#[warn(clippy::to_string_in_format_args)]` on by default
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/repository/contents.rs#L106
warning: needless call to `as_bytes`
--> debian-packaging/src/repository/contents.rs:106:28
|
106 | bytes_count += line.as_bytes().len();
| ^^^^^^^^^^^^^^^^^^^^^ help: `len()` can be called directly on strings: `line.len()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_as_bytes
= note: `#[warn(clippy::needless_as_bytes)]` on by default
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/repository/http.rs#L37
warning: this can be `std::io::Error::other(_)`
--> debian-packaging/src/repository/http.rs:37:13
|
37 | / std::io::Error::new(
38 | | std::io::ErrorKind::Other,
39 | | format!("error sending HTTP request: {:?}", e),
40 | | ),
| |_____________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
37 ~ std::io::Error::other(
38 ~ format!("error sending HTTP request: {:?}", e),
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
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/
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/binary_package_control.rs#L49
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/binary_package_control.rs:49:6
|
49 | impl<'a> DerefMut for BinaryPackageControlFile<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
49 - impl<'a> DerefMut for BinaryPackageControlFile<'a> {
49 + impl DerefMut for BinaryPackageControlFile<'_> {
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/binary_package_control.rs#L67
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/binary_package_control.rs:67:6
|
67 | impl<'a> BinaryPackageControlFile<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
67 - impl<'a> BinaryPackageControlFile<'a> {
67 + impl BinaryPackageControlFile<'_> {
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/binary_package_list.rs#L31
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/binary_package_list.rs:31:6
|
31 | impl<'a> DerefMut for BinaryPackageList<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
31 - impl<'a> DerefMut for BinaryPackageList<'a> {
31 + impl DerefMut for BinaryPackageList<'_> {
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/changelog.rs#L28
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/changelog.rs:28:6
|
28 | impl<'a> ChangelogEntry<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
28 - impl<'a> ChangelogEntry<'a> {
28 + impl ChangelogEntry<'_> {
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/control.rs#L191
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/control.rs:191:6
|
191 | impl<'a> Display for ControlField<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
191 - impl<'a> Display for ControlField<'a> {
191 + impl Display for ControlField<'_> {
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/control.rs#L193
warning: `format!` in `write!` args
--> debian-packaging/src/control.rs:193:9
|
193 | write!(f, "{}", format!("{}: {}\n", self.name, self.value_str()))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: combine the `format!(..)` arguments with the outer `write!(..)` call
= help: or consider changing `format!` to `format_args!`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#format_in_format_args
= note: `#[warn(clippy::format_in_format_args)]` on by default
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/control.rs#L374
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/control.rs:374:6
|
374 | impl<'a> Display for ControlParagraph<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
374 - impl<'a> Display for ControlParagraph<'a> {
374 + impl Display for ControlParagraph<'_> {
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/deb/reader.rs#L196
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/deb/reader.rs:196:6
|
196 | impl<'a> DerefMut for ControlTarEntry<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
196 - impl<'a> DerefMut for ControlTarEntry<'a> {
196 + impl DerefMut for ControlTarEntry<'_> {
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/deb/reader.rs#L202
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/deb/reader.rs:202:6
|
202 | impl<'a> ControlTarEntry<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
202 - impl<'a> ControlTarEntry<'a> {
202 + impl ControlTarEntry<'_> {
|
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/debian_source_control.rs#L36
warning: the following explicit lifetimes could be elided: 'a
--> debian-packaging/src/debian_source_control.rs:36:6
|
36 | impl<'a> DebianSourceControlFileEntry<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
36 - impl<'a> DebianSourceControlFileEntry<'a> {
36 + impl DebianSourceControlFileEntry<'_> {
|
|
|
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (1.75.0, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (1.75.0, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (1.75.0, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (1.75.0, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
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/
|
|
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
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/
|