From 28a089c692d959469190a6e63d46710db37629c3 Mon Sep 17 00:00:00 2001 From: MoCipher Date: Fri, 20 Feb 2026 09:18:52 +0100 Subject: [PATCH] ci: add cargo metadata/tree diagnostics --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 397e5be..adc7fc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,6 +71,15 @@ jobs: echo "=== Cargo.lock entries for key crates ===" grep -nE 'bdk|bip39|bip32|bitcoin|rusqlite|hidapi|aes-gcm|rusqlite' Cargo.lock || true + - name: Debug: cargo metadata & dependency tree + run: | + echo "RUSTC:" && rustc --version || true + echo "CARGO:" && cargo --version || true + echo "\n=== cargo metadata (top-level) ===" + cargo metadata --no-deps --format-version 1 || true + echo "\n=== cargo tree (dependencies, depth=2) ===" + cargo tree --edges normal --depth 2 || true + - name: Build run: cargo build --workspace --verbose - name: Run Rust tests