@@ -56,11 +56,11 @@ jobs:
56
56
if : matrix.target != 'aarch64-unknown-linux-gnu'
57
57
58
58
core-msrv :
59
- name : cargo +${{ matrix.rust }} build (futures-{core, io, sink, task })
59
+ name : cargo +${{ matrix.rust }} build (futures-{core, io, sink})
60
60
strategy :
61
61
matrix :
62
62
rust :
63
- # This is the minimum Rust version supported by futures-core, futures-io, futures-sink, futures-task .
63
+ # This is the minimum Rust version supported by futures-core, futures-io, futures-sink.
64
64
# When updating this, the reminder to update the minimum required version in README.md, Cargo.toml, and .clippy.toml.
65
65
- 1.36
66
66
runs-on : ubuntu-latest
@@ -76,22 +76,22 @@ jobs:
76
76
# Check no-default-features
77
77
- run : |
78
78
cargo hack build --workspace --ignore-private --no-default-features \
79
- --exclude futures --exclude futures-util --exclude futures-macro --exclude futures-executor --exclude futures-channel --exclude futures-test
79
+ --exclude futures --exclude futures-util --exclude futures-task --exclude futures- macro --exclude futures-executor --exclude futures-channel --exclude futures-test
80
80
# Check alloc feature
81
81
- run : |
82
82
cargo hack build --workspace --ignore-private --no-default-features --features alloc --ignore-unknown-features \
83
- --exclude futures --exclude futures-util --exclude futures-macro --exclude futures-executor --exclude futures-channel --exclude futures-test
83
+ --exclude futures --exclude futures-util --exclude futures-task --exclude futures- macro --exclude futures-executor --exclude futures-channel --exclude futures-test
84
84
# Check std feature
85
85
- run : |
86
86
cargo hack build --workspace --ignore-private --no-default-features --features std \
87
- --exclude futures --exclude futures-util --exclude futures-macro --exclude futures-executor --exclude futures-channel --exclude futures-test
87
+ --exclude futures --exclude futures-util --exclude futures-task --exclude futures- macro --exclude futures-executor --exclude futures-channel --exclude futures-test
88
88
89
89
util-msrv :
90
90
name : cargo +${{ matrix.rust }} build
91
91
strategy :
92
92
matrix :
93
93
rust :
94
- # This is the minimum Rust version supported by futures, futures-util, futures-macro, futures-executor, futures-channel, futures-test.
94
+ # This is the minimum Rust version supported by futures, futures-util, futures-task, futures- macro, futures-executor, futures-channel, futures-test.
95
95
# When updating this, the reminder to update the minimum required version in README.md and Cargo.toml.
96
96
- 1.45
97
97
runs-on : ubuntu-latest
0 commit comments