diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6056b58..e019711 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -165,8 +165,10 @@ jobs: prefix-key: "v1-docs" cache-on-failure: true + # Use --features full to match docs.rs metadata configuration + # (avoids wasm feature which requires wasm32 target not in docs.rs) - name: Build documentation - run: cargo doc --no-deps --all-features + run: cargo doc --no-deps --features full env: RUSTDOCFLAGS: "-D warnings"