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)"