From 393e58dfd1a0a6862288e7f7d5bfc3ff2d6e4e20 Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Mon, 18 Sep 2023 18:44:44 +0300 Subject: [PATCH] CI: don't pass docsrs feature to cargo doc One dependency has docs that make nightly rustdoc fail, while others require nightly with the "docsrs" feature. --- .github/workflows/rust.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index da71defdb..a879f621b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -57,6 +57,4 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - - env: - RUSTDOCFLAGS: "--cfg docsrs" - run: cargo doc --all-features + - run: cargo doc --all-features