We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16565cc + 74882c1 commit e9c0f8fCopy full SHA for e9c0f8f
.github/workflows/ci.yml
@@ -52,6 +52,12 @@ jobs:
52
command: check
53
args: --no-default-features --features std
54
55
+ - name: check attributes
56
+ uses: actions-rs/cargo@v1
57
+ with:
58
+ command: check
59
+ args: --features attributes
60
+
61
- name: tests
62
uses: actions-rs/cargo@v1
63
with:
Cargo.toml
@@ -34,8 +34,9 @@ default = [
34
"num_cpus",
35
"pin-project-lite",
36
]
37
-docs = ["unstable"]
+docs = ["attributes", "unstable"]
38
unstable = ["default", "broadcaster"]
39
+attributes = ["async-attributes"]
40
std = [
41
"async-macros",
42
"crossbeam-utils",
0 commit comments