Skip to content

feat: a11y applet #1080

feat: a11y applet

feat: a11y applet #1080

Triggered via push October 31, 2024 22:11
Status Failure
Total duration 2m 36s
Artifacts

ci.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

2 errors and 10 warnings
failed to resolve: use of undeclared crate or module `cosmic_applet_battery`: cosmic-applet-a11y/src/main.rs#L12
error[E0433]: failed to resolve: use of undeclared crate or module `cosmic_applet_battery` --> cosmic-applet-a11y/src/main.rs:12:5 | 12 | cosmic_applet_battery::run() | ^^^^^^^^^^^^^^^^^^^^^ use of undeclared crate or module `cosmic_applet_battery` | help: there is a crate or module with a similar name | 12 | cosmic_applet_a11y::run() | ~~~~~~~~~~~~~~~~~~
linting
Clippy had exited with the 101 exit code
taken reference of right operand: cosmic-app-list/cosmic-app-list-config/src/lib.rs#L45
warning: taken reference of right operand --> cosmic-app-list/cosmic-app-list-config/src/lib.rs:45:63 | 45 | if let Some(pos) = self.favorites.iter().position(|e| e == &id) { | ^^^^^--- | | | help: use the right value directly: `id` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#op_ref = note: `#[warn(clippy::op_ref)]` on by default
this `if` statement can be collapsed: cosmic-applet-audio/src/mouse_area.rs#L303
warning: this `if` statement can be collapsed --> cosmic-applet-audio/src/mouse_area.rs:303:9 | 303 | / if !state.is_out_of_bounds { 304 | | if widget 305 | | .on_mouse_enter 306 | | .as_ref() ... | 317 | | } 318 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if = note: `#[warn(clippy::collapsible_if)]` on by default help: collapse nested if block | 303 ~ if !state.is_out_of_bounds && widget 304 + .on_mouse_enter 305 + .as_ref() 306 + .or(widget.on_mouse_exit.as_ref()) 307 + .is_some() { 308 + if let Event::Mouse(mouse::Event::CursorMoved { .. }) = event { 309 + state.is_out_of_bounds = true; 310 + if let Some(message) = widget.on_mouse_exit.as_ref() { 311 + shell.publish(message.clone()); 312 + } 313 + return event::Status::Captured; 314 + } 315 + } |
unused import: `std::ops::Sub`: cosmic-applet-notifications/src/subscriptions/dbus.rs#L4
warning: unused import: `std::ops::Sub` --> cosmic-applet-notifications/src/subscriptions/dbus.rs:4:5 | 4 | use std::ops::Sub; | ^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
field `0` is never read: cosmic-applet-audio/src/pulse.rs#L453
warning: field `0` is never read --> cosmic-applet-audio/src/pulse.rs:453:16 | 453 | IterateErr(IterateResult), | ---------- ^^^^^^^^^^^^^ | | | field in this variant | = note: `#[warn(dead_code)]` on by default help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 453 | IterateErr(()), | ~~
field `0` is never read: cosmic-applet-audio/src/pulse.rs#L454
warning: field `0` is never read --> cosmic-applet-audio/src/pulse.rs:454:16 | 454 | ContextErr(pulse::context::State), | ---------- ^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 454 | ContextErr(()), | ~~
field `0` is never read: cosmic-applet-audio/src/pulse.rs#L455
warning: field `0` is never read --> cosmic-applet-audio/src/pulse.rs:455:18 | 455 | OperationErr(pulse::operation::State), | ------------ ^^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 455 | OperationErr(()), | ~~
field `0` is never read: cosmic-applet-audio/src/pulse.rs#L456
warning: field `0` is never read --> cosmic-applet-audio/src/pulse.rs:456:11 | 456 | PAErr(PAErr), | ----- ^^^^^ | | | field in this variant | help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 456 | PAErr(()), | ~~
field `0` is never read: cosmic-applet-audio/src/pulse.rs#L458
warning: field `0` is never read --> cosmic-applet-audio/src/pulse.rs:458:10 | 458 | Misc(&'a str), | ---- ^^^^^^^ | | | field in this variant | help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 458 | Misc(()), | ~~
fields `user_name`, `host_name`, `server_version`, `server_name`, and `cookie` are never read: cosmic-applet-audio/src/pulse.rs#L811
warning: fields `user_name`, `host_name`, `server_version`, `server_name`, and `cookie` are never read --> cosmic-applet-audio/src/pulse.rs:811:9 | 809 | pub struct ServerInfo { | ---------- fields in this struct 810 | /// User name of the daemon process. 811 | pub user_name: Option<String>, | ^^^^^^^^^ 812 | /// Host name the daemon is running on. 813 | pub host_name: Option<String>, | ^^^^^^^^^ 814 | /// Version string of the daemon. 815 | pub server_version: Option<String>, | ^^^^^^^^^^^^^^ 816 | /// Server package name (usually “pulseaudio”). 817 | pub server_name: Option<String>, | ^^^^^^^^^^^ ... 825 | pub cookie: u32, | ^^^^^^ | = note: `ServerInfo` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
using `.iter().next()` on an array: cosmic-applet-audio/src/mouse_area.rs#L270
warning: using `.iter().next()` on an array --> cosmic-applet-audio/src/mouse_area.rs:270:30 | 270 | if let Some(state) = state.children.iter().next() { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try calling: `state.children.first()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#iter_next_slice = note: `#[warn(clippy::iter_next_slice)]` on by default