diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 254ec988..cb1932ea 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -82,7 +82,7 @@ jobs: - name: Build external docs run: | # Exclude zebra-utils, it is not for library or app users - cargo doc --no-deps --workspace --exclude zebra-utils + cargo doc --no-deps --workspace --all-features --exclude zebra-utils env: RUSTDOCFLAGS: '--html-in-header katex-header.html' @@ -96,7 +96,7 @@ jobs: - name: Build internal docs run: | - cargo doc --no-deps --document-private-items + cargo doc --no-deps --workspace --all-features --document-private-items env: RUSTDOCFLAGS: '--html-in-header katex-header.html'