From 0d4a6a64d2d65820fdc5d53c28ebe1197d4bcc1e Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 15 Sep 2022 05:53:08 +1000 Subject: [PATCH] Enable all cargo features in Zebra's deployed docs (#5156) --- .github/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'