From 0d521cb77cf0e9aaf0b2483cb4ca603ed0d547a7 Mon Sep 17 00:00:00 2001 From: Michael J Ward Date: Sun, 6 Oct 2019 09:45:29 -0500 Subject: [PATCH] Removes unstable feature flag from CI doc commands Per Stjepan Glavina, this flag is superfluous because #[cfg(any(feature = "unstable", feature = "docs"))] is used everywhere in the codebase. Discussion: https://github.com/async-rs/async-std/pull/278#issuecomment-538744737 --- .github/workflows/ci.yml | 2 +- .travis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59f149d..2443717 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,4 +54,4 @@ jobs: run: cargo fmt --all -- --check - name: Docs - run: cargo doc --features docs,unstable + run: cargo doc --features docs diff --git a/.travis.yml b/.travis.yml index 0249f8e..bb3c836 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,7 +50,7 @@ matrix: rust: nightly os: linux script: - - cargo doc --features docs,unstable + - cargo doc --features docs - name: book rust: nightly