Enable all cargo features in Zebra's deployed docs (#5156)

This commit is contained in:
teor 2022-09-15 05:53:08 +10:00 committed by GitHub
parent c2514ba64a
commit 0d4a6a64d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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'