Skip to content

Commit e9c0f8f

Browse files
authored
Merge pull request #481 from async-rs/fix-proc-macro-render
fix attributes feature
2 parents 16565cc + 74882c1 commit e9c0f8f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ jobs:
5252
command: check
5353
args: --no-default-features --features std
5454

55+
- name: check attributes
56+
uses: actions-rs/cargo@v1
57+
with:
58+
command: check
59+
args: --features attributes
60+
5561
- name: tests
5662
uses: actions-rs/cargo@v1
5763
with:

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ default = [
3434
"num_cpus",
3535
"pin-project-lite",
3636
]
37-
docs = ["unstable"]
37+
docs = ["attributes", "unstable"]
3838
unstable = ["default", "broadcaster"]
39+
attributes = ["async-attributes"]
3940
std = [
4041
"async-macros",
4142
"crossbeam-utils",

0 commit comments

Comments
 (0)