Merge pull request #481 from async-rs/fix-proc-macro-render

fix attributes feature
This commit is contained in:
Yoshua Wuyts 2019-11-09 12:56:10 +01:00 committed by GitHub
commit e9c0f8f6b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -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:

View file

@ -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",