@@ -18,9 +18,9 @@ matrix:
18
18
- cargo run --manifest-path ci/remove-dev-dependencies/Cargo.toml */Cargo.toml
19
19
# Check default-features
20
20
- cargo build --all
21
- # Check compat & threadpool features
21
+ # Check compat & thread-pool features
22
22
- cargo build --manifest-path futures/Cargo.toml --features io-compat
23
- - cargo build --manifest-path futures/Cargo.toml --features threadpool
23
+ - cargo build --manifest-path futures/Cargo.toml --features thread-pool
24
24
25
25
# This is the minimum Rust version supported by `async-await` feature.
26
26
# When updating this, the reminder to update the minimum required version of `async-await` feature in README.md.
@@ -36,19 +36,19 @@ matrix:
36
36
- cargo run --manifest-path ci/remove-dev-dependencies/Cargo.toml */Cargo.toml
37
37
# Check default-features
38
38
- cargo build --all
39
- # Check compat & threadpool features
39
+ # Check compat & thread-pool features
40
40
- cargo build --manifest-path futures/Cargo.toml --features io-compat
41
- - cargo build --manifest-path futures/Cargo.toml --features threadpool
41
+ - cargo build --manifest-path futures/Cargo.toml --features thread-pool
42
42
43
43
- name : cargo +beta build
44
44
rust : beta
45
45
script :
46
46
- cargo run --manifest-path ci/remove-dev-dependencies/Cargo.toml */Cargo.toml
47
47
# Check default-features
48
48
- cargo build --all
49
- # Check compat & threadpool & async-await features
49
+ # Check compat & thread-pool & async-await features
50
50
- cargo build --manifest-path futures/Cargo.toml --features io-compat
51
- - cargo build --manifest-path futures/Cargo.toml --features threadpool
51
+ - cargo build --manifest-path futures/Cargo.toml --features thread-pool
52
52
- cargo build --manifest-path futures/Cargo.toml --features async-await
53
53
54
54
- name : cargo test
@@ -153,7 +153,7 @@ matrix:
153
153
- cargo check --manifest-path futures-io/Cargo.toml
154
154
- cargo check --manifest-path futures-io/Cargo.toml --all-features
155
155
# Check each features
156
- - cargo check --manifest-path futures-io/Cargo.toml --features read_initializer ,unstable
156
+ - cargo check --manifest-path futures-io/Cargo.toml --features read-initializer ,unstable
157
157
158
158
# futures-util
159
159
# Check default-features, all-features
@@ -173,7 +173,7 @@ matrix:
173
173
- cargo check --manifest-path futures-util/Cargo.toml --features sink,bilock,unstable
174
174
- cargo check --manifest-path futures-util/Cargo.toml --features io,bilock,unstable
175
175
- cargo check --manifest-path futures-util/Cargo.toml --features sink,io
176
- - cargo check --manifest-path futures-util/Cargo.toml --features read_initializer ,unstable
176
+ - cargo check --manifest-path futures-util/Cargo.toml --features read-initializer ,unstable
177
177
# Check each features with --no-default-features
178
178
- cargo check --manifest-path futures-util/Cargo.toml --no-default-features
179
179
- cargo check --manifest-path futures-util/Cargo.toml --no-default-features --features sink
@@ -188,7 +188,7 @@ matrix:
188
188
- cargo check --manifest-path futures-executor/Cargo.toml
189
189
- cargo check --manifest-path futures-executor/Cargo.toml --all-features
190
190
# Check each features
191
- - cargo check --manifest-path futures-executor/Cargo.toml --features threadpool
191
+ - cargo check --manifest-path futures-executor/Cargo.toml --features thread-pool
192
192
193
193
- name : cargo doc
194
194
rust : nightly
0 commit comments