fix(ci): update depgraph argument and formatting
- metrics.yml: use correct --dedup-transitive-deps flag - render.rs: apply cargo fmt fixes
This commit is contained in:
@@ -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
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user