This repository was archived by the owner on Jul 24, 2026. It is now read-only.
Fix options modal and launcher on Windows (#189) #348
Annotations
11 warnings
|
importing legacy numeric constants:
download_manager/src/depot_manager.rs#L4
warning: importing legacy numeric constants
--> download_manager/src/depot_manager.rs:4:32
|
4 | time::{Duration, Instant}, usize,
| ^^^^^
|
= help: remove this import
= note: then `usize::<CONST>` will resolve to the respective associated constant
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `#[warn(clippy::legacy_numeric_constants)]` on by default
|
|
unused import: `log::info`:
database/src/db.rs#L7
warning: unused import: `log::info`
--> database/src/db.rs:7:5
|
7 | use log::info;
| ^^^^^^^^^
|
|
unused import: `keyring::Entry`:
database/src/db.rs#L6
warning: unused import: `keyring::Entry`
--> database/src/db.rs:6:5
|
6 | use keyring::Entry;
| ^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
|
|
clippy_check
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/
|
|
clippy_check
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/
|
|
clippy_check
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/
|
|
clippy_check
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/
|
|
importing legacy numeric constants:
download_manager/src/depot_manager.rs#L4
warning: importing legacy numeric constants
--> download_manager/src/depot_manager.rs:4:32
|
4 | time::{Duration, Instant}, usize,
| ^^^^^
|
= help: remove this import
= note: then `usize::<CONST>` will resolve to the respective associated constant
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `#[warn(clippy::legacy_numeric_constants)]` on by default
|
|
this `MutexGuard` is held across an await point:
download_manager/src/download_manager_frontend.rs#L134
warning: this `MutexGuard` is held across an await point
--> download_manager/src/download_manager_frontend.rs:134:13
|
134 | let mut queue = self.edit();
| ^^^^^^^^^
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling `await`
note: these are all the await points this lock is held through
--> download_manager/src/download_manager_frontend.rs:141:9
|
141 | send!(self.command_sender, DownloadManagerSignal::UpdateUIQueue);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
= note: `#[warn(clippy::await_holding_lock)]` on by default
= note: this warning originates in the macro `send` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
unused import: `log::info`:
database/src/db.rs#L7
warning: unused import: `log::info`
--> database/src/db.rs:7:5
|
7 | use log::info;
| ^^^^^^^^^
|
|
unused import: `keyring::Entry`:
database/src/db.rs#L6
warning: unused import: `keyring::Entry`
--> database/src/db.rs:6:5
|
6 | use keyring::Entry;
| ^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
|