File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -93,13 +93,13 @@ cargo --locked run --example taproot-psbt --features=rand-std,bitcoinconsensus
9393
9494# Build the docs if told to (this only works with the nightly toolchain)
9595if [ " $DO_DOCSRS " = true ]; then
96- RUSTDOCFLAGS=" --cfg docsrs -D warnings -D rustdoc::broken-intra-doc-links" cargo +nightly doc --all-features
96+ RUSTDOCFLAGS=" --cfg docsrs -D warnings -D rustdoc::broken-intra-doc-links" cargo +nightly doc --all-features --no-deps
9797fi
9898
9999# Build the docs with a stable toolchain, in unison with the DO_DOCSRS command
100100# above this checks that we feature guarded docs imports correctly.
101101if [ " $DO_DOCS " = true ]; then
102- RUSTDOCFLAGS=" -D warnings" cargo +stable doc --all-features
102+ RUSTDOCFLAGS=" -D warnings" cargo +stable doc --all-features --no-deps
103103fi
104104
105105# Fuzz if told to
Original file line number Diff line number Diff line change 5858
5959# Build the docs if told to (this only works with the nightly toolchain)
6060if [ " $DO_DOCSRS " = true ]; then
61- RUSTDOCFLAGS=" --cfg docsrs -D warnings -D rustdoc::broken-intra-doc-links" cargo +nightly doc --all-features
61+ RUSTDOCFLAGS=" --cfg docsrs -D warnings -D rustdoc::broken-intra-doc-links" cargo +nightly doc --all-features --no-deps
6262fi
6363
6464# Build the docs with a stable toolchain, in unison with the DO_DOCSRS command
6565# above this checks that we feature guarded docs imports correctly.
6666if [ " $DO_DOCS " = true ]; then
67- RUSTDOCFLAGS=" -D warnings" cargo +stable doc --all-features
67+ RUSTDOCFLAGS=" -D warnings" cargo +stable doc --all-features --no-deps
6868fi
6969
7070# Webassembly stuff
Original file line number Diff line number Diff line change 4444
4545# Build the docs if told to (this only works with the nightly toolchain)
4646if [ " $DO_DOCSRS " = true ]; then
47- RUSTDOCFLAGS=" --cfg docsrs -D warnings -D rustdoc::broken-intra-doc-links" cargo +nightly doc --all-features
47+ RUSTDOCFLAGS=" --cfg docsrs -D warnings -D rustdoc::broken-intra-doc-links" cargo +nightly doc --all-features --no-deps
4848fi
4949
5050# Build the docs with a stable toolchain, in unison with the DO_DOCSRS command
5151# above this checks that we feature guarded docs imports correctly.
5252if [ " $DO_DOCS " = true ]; then
53- RUSTDOCFLAGS=" -D warnings" cargo +stable doc --all-features
53+ RUSTDOCFLAGS=" -D warnings" cargo +stable doc --all-features --no-deps
5454fi
5555
5656# Run formatter if told to.
You can’t perform that action at this time.
0 commit comments