Skip to content

chore: Bump the version in Cargo.lock #66

chore: Bump the version in Cargo.lock

chore: Bump the version in Cargo.lock #66

Triggered via push December 20, 2024 03:33
Status Success
Total duration 2m 16s
Artifacts

check.yml

on: push
Matrix: clippy
Fit to window
Zoom out
Zoom in

Annotations

25 warnings
stable / fmt
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
1.82.0 / check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
nightly / doc
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
stable / clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
the following explicit lifetimes could be elided: 'a: src/app/mod.rs#L168
warning: the following explicit lifetimes could be elided: 'a --> src/app/mod.rs:168:6 | 168 | impl<'a> Default for App<'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 | 168 - impl<'a> Default for App<'a> { 168 + impl Default for App<'_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/blocklist/mod.rs#L24
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/blocklist/mod.rs:24:6 | 24 | impl<'a, 'b> BlocklistHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 24 - impl<'a, 'b> BlocklistHandler<'a, 'b> { 24 + impl BlocklistHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/collections/collection_details_handler.rs#L26
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/collections/collection_details_handler.rs:26:6 | 26 | impl<'a, 'b> CollectionDetailsHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 26 - impl<'a, 'b> CollectionDetailsHandler<'a, 'b> { 26 + impl CollectionDetailsHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/collections/edit_collection_handler.rs#L23
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/collections/edit_collection_handler.rs:23:6 | 23 | impl<'a, 'b> EditCollectionHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 23 - impl<'a, 'b> EditCollectionHandler<'a, 'b> { 23 + impl EditCollectionHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/collections/mod.rs#L32
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/collections/mod.rs:32:6 | 32 | impl<'a, 'b> CollectionsHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 32 - impl<'a, 'b> CollectionsHandler<'a, 'b> { 32 + impl CollectionsHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/downloads/mod.rs#L23
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/downloads/mod.rs:23:6 | 23 | impl<'a, 'b> DownloadsHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 23 - impl<'a, 'b> DownloadsHandler<'a, 'b> { 23 + impl DownloadsHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/indexers/edit_indexer_handler.rs#L22
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/indexers/edit_indexer_handler.rs:22:6 | 22 | impl<'a, 'b> EditIndexerHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 22 - impl<'a, 'b> EditIndexerHandler<'a, 'b> { 22 + impl EditIndexerHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/indexers/edit_indexer_settings_handler.rs#L23
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/indexers/edit_indexer_settings_handler.rs:23:6 | 23 | impl<'a, 'b> IndexerSettingsHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 23 - impl<'a, 'b> IndexerSettingsHandler<'a, 'b> { 23 + impl IndexerSettingsHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/indexers/test_all_indexers_handler.rs#L20
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/indexers/test_all_indexers_handler.rs:20:6 | 20 | impl<'a, 'b> TestAllIndexersHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 20 - impl<'a, 'b> TestAllIndexersHandler<'a, 'b> { 20 + impl TestAllIndexersHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/indexers/mod.rs#L34
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/indexers/mod.rs:34:6 | 34 | impl<'a, 'b> IndexersHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 34 - impl<'a, 'b> IndexersHandler<'a, 'b> { 34 + impl IndexersHandler<'_, '_> { |
beta / clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
the following explicit lifetimes could be elided: 'a: src/app/mod.rs#L168
warning: the following explicit lifetimes could be elided: 'a --> src/app/mod.rs:168:6 | 168 | impl<'a> Default for App<'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 | 168 - impl<'a> Default for App<'a> { 168 + impl Default for App<'_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/blocklist/mod.rs#L24
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/blocklist/mod.rs:24:6 | 24 | impl<'a, 'b> BlocklistHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 24 - impl<'a, 'b> BlocklistHandler<'a, 'b> { 24 + impl BlocklistHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/collections/collection_details_handler.rs#L26
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/collections/collection_details_handler.rs:26:6 | 26 | impl<'a, 'b> CollectionDetailsHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 26 - impl<'a, 'b> CollectionDetailsHandler<'a, 'b> { 26 + impl CollectionDetailsHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/collections/edit_collection_handler.rs#L23
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/collections/edit_collection_handler.rs:23:6 | 23 | impl<'a, 'b> EditCollectionHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 23 - impl<'a, 'b> EditCollectionHandler<'a, 'b> { 23 + impl EditCollectionHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/collections/mod.rs#L32
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/collections/mod.rs:32:6 | 32 | impl<'a, 'b> CollectionsHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 32 - impl<'a, 'b> CollectionsHandler<'a, 'b> { 32 + impl CollectionsHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/downloads/mod.rs#L23
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/downloads/mod.rs:23:6 | 23 | impl<'a, 'b> DownloadsHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 23 - impl<'a, 'b> DownloadsHandler<'a, 'b> { 23 + impl DownloadsHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/indexers/edit_indexer_handler.rs#L22
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/indexers/edit_indexer_handler.rs:22:6 | 22 | impl<'a, 'b> EditIndexerHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 22 - impl<'a, 'b> EditIndexerHandler<'a, 'b> { 22 + impl EditIndexerHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/indexers/edit_indexer_settings_handler.rs#L23
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/indexers/edit_indexer_settings_handler.rs:23:6 | 23 | impl<'a, 'b> IndexerSettingsHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 23 - impl<'a, 'b> IndexerSettingsHandler<'a, 'b> { 23 + impl IndexerSettingsHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/indexers/test_all_indexers_handler.rs#L20
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/indexers/test_all_indexers_handler.rs:20:6 | 20 | impl<'a, 'b> TestAllIndexersHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 20 - impl<'a, 'b> TestAllIndexersHandler<'a, 'b> { 20 + impl TestAllIndexersHandler<'_, '_> { |
the following explicit lifetimes could be elided: 'a, 'b: src/handlers/radarr_handlers/indexers/mod.rs#L34
warning: the following explicit lifetimes could be elided: 'a, 'b --> src/handlers/radarr_handlers/indexers/mod.rs:34:6 | 34 | impl<'a, 'b> IndexersHandler<'a, 'b> { | ^^ ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 34 - impl<'a, 'b> IndexersHandler<'a, 'b> { 34 + impl IndexersHandler<'_, '_> { |