forked from mirror/async-std
Merge pull request #481 from async-rs/fix-proc-macro-render
fix attributes feature
This commit is contained in:
commit
e9c0f8f6b5
2 changed files with 8 additions and 1 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -52,6 +52,12 @@ jobs:
|
|||
command: check
|
||||
args: --no-default-features --features std
|
||||
|
||||
- name: check attributes
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: check
|
||||
args: --features attributes
|
||||
|
||||
- name: tests
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
|
|
|
@ -34,8 +34,9 @@ default = [
|
|||
"num_cpus",
|
||||
"pin-project-lite",
|
||||
]
|
||||
docs = ["unstable"]
|
||||
docs = ["attributes", "unstable"]
|
||||
unstable = ["default", "broadcaster"]
|
||||
attributes = ["async-attributes"]
|
||||
std = [
|
||||
"async-macros",
|
||||
"crossbeam-utils",
|
||||
|
|
Loading…
Reference in a new issue