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:
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
|
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:
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue