fix(ci): update depgraph argument and formatting
Code Quality / quality-checks (push) Has been cancelled
Metrics Collection / collect-metrics (push) Has been cancelled

- metrics.yml: use correct --dedup-transitive-deps flag
- render.rs: apply cargo fmt fixes
This commit is contained in:
2026-03-17 20:51:14 +01:00
parent a5115c0a15
commit c05d987ff1
2 changed files with 22 additions and 23 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ jobs:
- name: Generate dependency graph
run: |
cargo install cargo-depgraph
cargo depgraph --all-features --dedup-transitive --format dot > deps.dot
cargo depgraph --all-features --dedup-transitive-deps --format dot > deps.dot
echo "Dependency graph generated: deps.dot"
echo "Total dependencies: $(cargo tree --depth 0 | wc -l)"
+1 -2
View File
@@ -499,8 +499,7 @@ impl Renderer {
let art_size = 56.0;
let spacing = 80.0;
if self.config.show_album_art
&& self.system_status.media_art_url != self.last_art_url {
if self.config.show_album_art && self.system_status.media_art_url != self.last_art_url {
self.last_art_url = self.system_status.media_art_url.clone();
self.media_art_surface = None;
if let Some(ref data) = self.system_status.media_art_data {