File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ jobs:
26
26
run : cargo build
27
27
- name : Run tests
28
28
if : matrix.rust-version != '1.37'
29
- run : cargo test -- --skip ui_compile_fail
29
+ run : cargo test --all -- --skip ui_compile_fail
30
30
- name : Run compile-fail tests
31
31
if : matrix.rust-version == 'stable'
32
32
run : cargo test -- ui_compile_fail
33
33
- name : Run tests (MSRV)
34
34
if : matrix.rust-version == '1.37'
35
- run : cargo test --lib -- --skip ui_compile_fail
35
+ run : cargo test -- --skip ui_compile_fail
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ autotests = true
16
16
edition = " 2018"
17
17
rust-version = " 1.37"
18
18
19
+ [workspace ]
20
+ members = [
21
+ " examples/async_await"
22
+ ]
19
23
20
24
[lib ]
21
25
proc-macro = true
@@ -28,5 +32,3 @@ proc-macro-error = "1.0.0"
28
32
29
33
[dev-dependencies ]
30
34
trybuild = " 1"
31
- async-trait = " 0.1"
32
- async-std = { version = " 1" , features = [" attributes" ] }
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " auto_impl_async_await_example"
3
+ version = " 0.0.0"
4
+ publish = false
5
+ edition = " 2021"
6
+
7
+ [dependencies ]
8
+ auto_impl = { path = " ../../" }
9
+ async-trait = " 0.1"
10
+ async-std = { version = " 1" , features = [" attributes" ] }
File renamed without changes.
You can’t perform that action at this time.
0 commit comments