all reordering #1325
Annotations
6 warnings
The following actions use a deprecated Node.js version and will be forced to run on node20: pnpm/action-setup@v2, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run Clippy:
crates/tauri-plugin-midi/src/lib.rs#L77
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> crates/tauri-plugin-midi/src/lib.rs:77:13
|
77 | &port,
| ^^^^^ help: change this to: `port`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
= note: `#[warn(clippy::needless_borrow)]` on by default
|
Run Clippy:
crates/tauri-plugin-midi/src/lib.rs#L129
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> crates/tauri-plugin-midi/src/lib.rs:129:18
|
129 | .connect(&port, "")
| ^^^^^ help: change this to: `port`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
|
Run Clippy:
crates/deno_experiments/src/main.rs#L12
warning: unused variable: `js_path`
--> crates/deno_experiments/src/main.rs:12:9
|
12 | let js_path = Path::new(env!("CARGO_MANIFEST_DIR")).join("main.ts");
| ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_js_path`
|
= note: `#[warn(unused_variables)]` on by default
|
Run Clippy:
apps/desktop/src-tauri/src/shell.rs#L4
warning: unused import: `serde::Serialize`
--> apps/desktop/src-tauri/src/shell.rs:4:5
|
4 | use serde::Serialize;
| ^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|
Run Clippy:
apps/desktop/src-tauri/src/shell.rs#L5
warning: unused import: `specta::Type`
--> apps/desktop/src-tauri/src/shell.rs:5:5
|
5 | use specta::Type;
| ^^^^^^^^^^^^
|
Loading