2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-05-14 19:11:27 +00:00

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 command: check
args: --no-default-features --features std args: --no-default-features --features std
- name: check attributes
uses: actions-rs/cargo@v1
with:
command: check
args: --features attributes
- name: tests - name: tests
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:

View file

@ -34,8 +34,9 @@ default = [
"num_cpus", "num_cpus",
"pin-project-lite", "pin-project-lite",
] ]
docs = ["unstable"] docs = ["attributes", "unstable"]
unstable = ["default", "broadcaster"] unstable = ["default", "broadcaster"]
attributes = ["async-attributes"]
std = [ std = [
"async-macros", "async-macros",
"crossbeam-utils", "crossbeam-utils",