2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

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
This commit is contained in:
Michael J Ward 2019-10-06 09:45:29 -05:00
parent cf6277bcdc
commit 0d521cb77c
2 changed files with 2 additions and 2 deletions

View file

@ -54,4 +54,4 @@ jobs:
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
- name: Docs - name: Docs
run: cargo doc --features docs,unstable run: cargo doc --features docs

View file

@ -50,7 +50,7 @@ matrix:
rust: nightly rust: nightly
os: linux os: linux
script: script:
- cargo doc --features docs,unstable - cargo doc --features docs
- name: book - name: book
rust: nightly rust: nightly