File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ matrix:
20
20
- cargo build --all
21
21
- cargo build --manifest-path futures/Cargo.toml --features io-compat
22
22
23
+ # This is the minimum Rust version supported by `async-await` feature.
24
+ # When updating this, the reminder to update the minimum required version of `async-await` feature in README.md.
25
+ - name : cargo build --features async-await (minimum required version)
26
+ rust : beta # 1.39.0
27
+ script :
28
+ - cargo run --manifest-path ci/remove-dev-dependencies/Cargo.toml */Cargo.toml
29
+ - cargo build --all --features async-await
30
+
23
31
- name : cargo +stable build
24
32
rust : stable
25
33
script :
@@ -31,18 +39,11 @@ matrix:
31
39
- name : cargo +beta build
32
40
rust : beta
33
41
script :
34
- # default features & compat feature
42
+ # default features & compat feature & async-await feature
35
43
- cargo run --manifest-path ci/remove-dev-dependencies/Cargo.toml */Cargo.toml
36
44
- cargo build --all
37
45
- cargo build --manifest-path futures/Cargo.toml --features io-compat
38
-
39
- # This is the minimum Rust version supported by `async-await` feature.
40
- # When updating this, the reminder to update the minimum required version of `async-await` feature in README.md.
41
- - name : cargo +nightly build (minimum required version)
42
- rust : nightly-2019-08-21
43
- script :
44
- - cargo run --manifest-path ci/remove-dev-dependencies/Cargo.toml */Cargo.toml
45
- - cargo build --all --all-features
46
+ - cargo build --manifest-path futures/Cargo.toml --features async-await
46
47
47
48
- name : cargo test
48
49
rust : nightly
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ The `async-await` feature provides several convenient features using async/await
65
65
futures-preview = { version = " =0.3.0-alpha.19" , features = [" async-await" ] }
66
66
```
67
67
68
- The current ` async-await ` feature requires Rust nightly 2019-08-21 or later.
68
+ The current ` async-await ` feature requires Rust 1.39 or later.
69
69
70
70
# License
71
71
You can’t perform that action at this time.
0 commit comments