chore: Bump the version in Cargo.lock #71
Annotations
11 warnings
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Run clippy action:
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<'_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Run clippy action:
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<'_, '_> {
|
|
Loading