From f3e81b420c0ae793c99f00e98dfb18d7a38b6fdb Mon Sep 17 00:00:00 2001 From: "Eric B. Ridge" Date: Thu, 30 Jul 2026 14:03:46 +0000 Subject: [PATCH] Fix docs.rs rustdoc emit flag --- tools/docsrs-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docsrs-check.sh b/tools/docsrs-check.sh index 3eccafbde..cb2afa616 100755 --- a/tools/docsrs-check.sh +++ b/tools/docsrs-check.sh @@ -68,6 +68,6 @@ if [[ -n "${docsrs_target}" ]]; then fi docsrs_rustdocflags="${RUSTDOCFLAGS:-}" -docsrs_rustdocflags="${docsrs_rustdocflags:+${docsrs_rustdocflags} }--cfg docsrs -Z unstable-options --emit=invocation-specific --cap-lints warn" +docsrs_rustdocflags="${docsrs_rustdocflags:+${docsrs_rustdocflags} }--cfg docsrs -Z unstable-options --emit=html-non-static-files --cap-lints warn" DOCS_RS=1 RUSTDOCFLAGS="${docsrs_rustdocflags}" "${rustdoc_cmd[@]}"