We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ded3e commit 12ab339Copy full SHA for 12ab339
.github/workflows/ci.yml
@@ -648,7 +648,9 @@ jobs:
648
649
- name: Generate cargo doc
650
run: |
651
- cargo doc --no-deps -p mithril-stm -p mithril-common -p mithril-aggregator \
+ # Force `--lib` to avoid a collision between the client lib and the client cli binary who share
652
+ # the same name (we only want to document those anyway)
653
+ cargo doc --no-deps --lib -p mithril-stm -p mithril-common -p mithril-aggregator \
654
-p mithril-signer -p mithril-client -p mithril-client-cli \
655
--all-features --message-format=json \
656
| clippy-sarif | tee rust-cargo-doc-results.sarif | sarif-fmt
0 commit comments