Skip to content

.github/workflows/workspace.yml #626

.github/workflows/workspace.yml

.github/workflows/workspace.yml #626

Triggered via schedule July 22, 2023 15:16
Status Success
Total duration 31m 51s
Artifacts

workspace.yml

on: schedule
Matrix: build-and-test
Fit to window
Zoom out
Zoom in

Annotations

7 errors and 46 warnings
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
Process completed with exit code 101.
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
Process completed with exit code 1.
build-and-test (nightly, macos-12, x86_64-apple-darwin)
Process completed with exit code 101.
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): pyoxidizer/src/py_packaging/standalone_builder.rs#L418
error: usage of `Arc<T>` where `T` is not `Send` or `Sync` --> pyoxidizer/src/py_packaging/standalone_builder.rs:418:9 | 418 | Arc::new(self.clone()) | ^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using `Rc<T>` instead or wrapping `T` in a std::sync type like `Mutex<T>` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync = note: `#[deny(clippy::arc_with_non_send_sync)]` on by default
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): pyoxidizer/src/starlark/python_executable.rs#L138
error: usage of `Arc<T>` where `T` is not `Send` or `Sync` --> pyoxidizer/src/starlark/python_executable.rs:138:18 | 138 | exe: Arc::new(Mutex::new(exe)), | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using `Rc<T>` instead or wrapping `T` in a std::sync type like `Mutex<T>` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
build-and-test (beta, macos-12, x86_64-apple-darwin): pyoxidizer/src/py_packaging/standalone_builder.rs#L418
error: usage of `Arc<T>` where `T` is not `Send` or `Sync` --> pyoxidizer/src/py_packaging/standalone_builder.rs:418:9 | 418 | Arc::new(self.clone()) | ^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using `Rc<T>` instead or wrapping `T` in a std::sync type like `Mutex<T>` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync = note: `#[deny(clippy::arc_with_non_send_sync)]` on by default
build-and-test (beta, macos-12, x86_64-apple-darwin): pyoxidizer/src/starlark/python_executable.rs#L138
error: usage of `Arc<T>` where `T` is not `Send` or `Sync` --> pyoxidizer/src/starlark/python_executable.rs:138:18 | 138 | exe: Arc::new(Mutex::new(exe)), | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using `Rc<T>` instead or wrapping `T` in a std::sync type like `Mutex<T>` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packed-resources/src/parser.rs#L65
warning: variable does not need to be mutable --> python-packed-resources/src/parser.rs:65:13 | 65 | let mut state = self.blob_sections[resource_field as usize] | ----^^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packed-resources/src/parser.rs#L516
warning: the following explicit lifetimes could be elided: 'a --> python-packed-resources/src/parser.rs:516:23 | 516 | pub fn load_resources<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { | ^^ ^^ ^^ | = 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 | 516 - pub fn load_resources<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { 516 + pub fn load_resources(data: &[u8]) -> Result<ResourceParserIterator<'_>, &'static str> { |
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packed-resources/src/parser.rs#L530
warning: the following explicit lifetimes could be elided: 'a --> python-packed-resources/src/parser.rs:530:22 | 530 | fn load_resources_v3<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 530 - fn load_resources_v3<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { 530 + fn load_resources_v3(data: &[u8]) -> Result<ResourceParserIterator<'_>, &'static str> { |
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packaging/src/interpreter.rs#L44
warning: this `impl` can be derived --> python-packaging/src/interpreter.rs:44:1 | 44 | / impl Default for PythonInterpreterProfile { 45 | | fn default() -> Self { 46 | | PythonInterpreterProfile::Isolated 47 | | } 48 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default = help: remove the manual implementation... help: ...and instead derive it... | 28 + #[derive(Default)] 29 | pub enum PythonInterpreterProfile { | help: ...and mark the default variant | 34 ~ #[default] 35 ~ Isolated, |
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packaging/src/licensing.rs#L928
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator` --> python-packaging/src/licensing.rs:928:24 | 928 | .chain(self.classifier_licenses.into_iter()) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `self.classifier_licenses` | note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()` --> /rustc/aad221e296715661a12715ab327dce058a807686/library/core/src/iter/traits/iterator.rs:522:12 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion = note: `#[warn(clippy::useless_conversion)]` on by default
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packaging/src/licensing.rs#L963
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator` --> python-packaging/src/licensing.rs:963:20 | 963 | .chain(self.notice_texts.into_iter()) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `self.notice_texts` | note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()` --> /rustc/aad221e296715661a12715ab327dce058a807686/library/core/src/iter/traits/iterator.rs:522:12 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L259
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:259:6 | 259 | impl<'a> From<PathBuf> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes = note: `#[warn(clippy::extra_unused_lifetimes)]` on by default
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L271
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:271:6 | 271 | impl<'a> From<Vec<u8>> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L277
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:277:6 | 277 | impl<'a> TryFrom<FileData> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L285
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:285:6 | 285 | impl<'a> TryFrom<&FileData> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packed-resources/src/parser.rs#L65
warning: variable does not need to be mutable --> python-packed-resources/src/parser.rs:65:13 | 65 | let mut state = self.blob_sections[resource_field as usize] | ----^^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packed-resources/src/parser.rs#L516
warning: the following explicit lifetimes could be elided: 'a --> python-packed-resources/src/parser.rs:516:1 | 516 | pub fn load_resources<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = 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 | 516 - pub fn load_resources<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { 516 + pub fn load_resources(data: &[u8]) -> Result<ResourceParserIterator<'_>, &'static str> { |
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packed-resources/src/parser.rs#L530
warning: the following explicit lifetimes could be elided: 'a --> python-packed-resources/src/parser.rs:530:1 | 530 | fn load_resources_v3<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 530 - fn load_resources_v3<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { 530 + fn load_resources_v3(data: &[u8]) -> Result<ResourceParserIterator<'_>, &'static str> { |
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): python-packaging/src/interpreter.rs#L44
warning: this `impl` can be derived --> python-packaging/src/interpreter.rs:44:1 | 44 | / impl Default for PythonInterpreterProfile { 45 | | fn default() -> Self { 46 | | PythonInterpreterProfile::Isolated 47 | | } 48 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default = help: remove the manual implementation... help: ...and instead derive it... | 28 + #[derive(Default)] 29 | pub enum PythonInterpreterProfile { | help: ...and mark the default variant | 34 ~ #[default] 35 ~ Isolated, |
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L259
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:259:6 | 259 | impl<'a> From<PathBuf> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes = note: `#[warn(clippy::extra_unused_lifetimes)]` on by default
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L271
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:271:6 | 271 | impl<'a> From<Vec<u8>> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L277
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:277:6 | 277 | impl<'a> TryFrom<FileData> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L285
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:285:6 | 285 | impl<'a> TryFrom<&FileData> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L293
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:293:6 | 293 | impl<'a> TryFrom<FileEntry> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): tugger-code-signing/src/lib.rs#L301
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:301:6 | 301 | impl<'a> TryFrom<&FileEntry> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (beta, macos-12, x86_64-apple-darwin)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (beta, macos-12, x86_64-apple-darwin): python-packed-resources/src/parser.rs#L65
warning: variable does not need to be mutable --> python-packed-resources/src/parser.rs:65:13 | 65 | let mut state = self.blob_sections[resource_field as usize] | ----^^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
build-and-test (beta, macos-12, x86_64-apple-darwin): python-packed-resources/src/parser.rs#L516
warning: the following explicit lifetimes could be elided: 'a --> python-packed-resources/src/parser.rs:516:23 | 516 | pub fn load_resources<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { | ^^ ^^ ^^ | = 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 | 516 - pub fn load_resources<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { 516 + pub fn load_resources(data: &[u8]) -> Result<ResourceParserIterator<'_>, &'static str> { |
build-and-test (beta, macos-12, x86_64-apple-darwin): python-packed-resources/src/parser.rs#L530
warning: the following explicit lifetimes could be elided: 'a --> python-packed-resources/src/parser.rs:530:22 | 530 | fn load_resources_v3<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 530 - fn load_resources_v3<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { 530 + fn load_resources_v3(data: &[u8]) -> Result<ResourceParserIterator<'_>, &'static str> { |
build-and-test (beta, macos-12, x86_64-apple-darwin): python-packaging/src/interpreter.rs#L44
warning: this `impl` can be derived --> python-packaging/src/interpreter.rs:44:1 | 44 | / impl Default for PythonInterpreterProfile { 45 | | fn default() -> Self { 46 | | PythonInterpreterProfile::Isolated 47 | | } 48 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default = help: remove the manual implementation... help: ...and instead derive it... | 28 + #[derive(Default)] 29 | pub enum PythonInterpreterProfile { | help: ...and mark the default variant | 34 ~ #[default] 35 ~ Isolated, |
build-and-test (beta, macos-12, x86_64-apple-darwin): python-packaging/src/licensing.rs#L928
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator` --> python-packaging/src/licensing.rs:928:24 | 928 | .chain(self.classifier_licenses.into_iter()) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `self.classifier_licenses` | note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()` --> /rustc/aad221e296715661a12715ab327dce058a807686/library/core/src/iter/traits/iterator.rs:522:12 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion = note: `#[warn(clippy::useless_conversion)]` on by default
build-and-test (beta, macos-12, x86_64-apple-darwin): python-packaging/src/licensing.rs#L963
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator` --> python-packaging/src/licensing.rs:963:20 | 963 | .chain(self.notice_texts.into_iter()) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `self.notice_texts` | note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()` --> /rustc/aad221e296715661a12715ab327dce058a807686/library/core/src/iter/traits/iterator.rs:522:12 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
build-and-test (beta, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L259
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:259:6 | 259 | impl<'a> From<PathBuf> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes = note: `#[warn(clippy::extra_unused_lifetimes)]` on by default
build-and-test (beta, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L271
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:271:6 | 271 | impl<'a> From<Vec<u8>> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (beta, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L277
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:277:6 | 277 | impl<'a> TryFrom<FileData> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (beta, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L285
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:285:6 | 285 | impl<'a> TryFrom<&FileData> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (stable, macos-12, x86_64-apple-darwin)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (stable, macos-12, x86_64-apple-darwin): python-packed-resources/src/parser.rs#L65
warning: variable does not need to be mutable --> python-packed-resources/src/parser.rs:65:13 | 65 | let mut state = self.blob_sections[resource_field as usize] | ----^^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
build-and-test (stable, macos-12, x86_64-apple-darwin): python-packed-resources/src/parser.rs#L516
warning: the following explicit lifetimes could be elided: 'a --> python-packed-resources/src/parser.rs:516:1 | 516 | pub fn load_resources<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = 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 | 516 - pub fn load_resources<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { 516 + pub fn load_resources(data: &[u8]) -> Result<ResourceParserIterator<'_>, &'static str> { |
build-and-test (stable, macos-12, x86_64-apple-darwin): python-packed-resources/src/parser.rs#L530
warning: the following explicit lifetimes could be elided: 'a --> python-packed-resources/src/parser.rs:530:1 | 530 | fn load_resources_v3<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 530 - fn load_resources_v3<'a>(data: &'a [u8]) -> Result<ResourceParserIterator<'a>, &'static str> { 530 + fn load_resources_v3(data: &[u8]) -> Result<ResourceParserIterator<'_>, &'static str> { |
build-and-test (stable, macos-12, x86_64-apple-darwin): python-packaging/src/interpreter.rs#L44
warning: this `impl` can be derived --> python-packaging/src/interpreter.rs:44:1 | 44 | / impl Default for PythonInterpreterProfile { 45 | | fn default() -> Self { 46 | | PythonInterpreterProfile::Isolated 47 | | } 48 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default = help: remove the manual implementation... help: ...and instead derive it... | 28 + #[derive(Default)] 29 | pub enum PythonInterpreterProfile { | help: ...and mark the default variant | 34 ~ #[default] 35 ~ Isolated, |
build-and-test (stable, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L259
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:259:6 | 259 | impl<'a> From<PathBuf> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes = note: `#[warn(clippy::extra_unused_lifetimes)]` on by default
build-and-test (stable, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L271
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:271:6 | 271 | impl<'a> From<Vec<u8>> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L277
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:277:6 | 277 | impl<'a> TryFrom<FileData> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L285
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:285:6 | 285 | impl<'a> TryFrom<&FileData> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L293
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:293:6 | 293 | impl<'a> TryFrom<FileEntry> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, macos-12, x86_64-apple-darwin): tugger-code-signing/src/lib.rs#L301
warning: this lifetime isn't used in the impl --> tugger-code-signing/src/lib.rs:301:6 | 301 | impl<'a> TryFrom<&FileEntry> for SignableCandidate<'static> { | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/