File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ matrix:
12
12
- name : cargo test
13
13
os : linux
14
14
15
+ - name : cargo test (with minimal versions)
16
+ os : linux
17
+ script :
18
+ - cargo update -Zminimal-versions
19
+ - cargo test
20
+
15
21
- name : cargo clippy
16
22
rust : nightly
17
23
install :
@@ -47,6 +53,18 @@ matrix:
47
53
- cargo build --manifest-path futures-sink/Cargo.toml --all-features
48
54
- cargo build --manifest-path futures-util/Cargo.toml --all-features
49
55
56
+ - name : cargo build --all-features (with minimal versions)
57
+ rust : nightly
58
+ script :
59
+ - cargo update -Zminimal-versions
60
+ - cargo build --manifest-path futures/Cargo.toml --all-features
61
+ - cargo build --manifest-path futures-core/Cargo.toml --all-features
62
+ - cargo build --manifest-path futures-channel/Cargo.toml --all-features
63
+ - cargo build --manifest-path futures-executor/Cargo.toml --all-features
64
+ - cargo build --manifest-path futures-io/Cargo.toml --all-features
65
+ - cargo build --manifest-path futures-sink/Cargo.toml --all-features
66
+ - cargo build --manifest-path futures-util/Cargo.toml --all-features
67
+
50
68
- name : cargo build --target=thumbv6m-none-eabi
51
69
rust : nightly
52
70
install :
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ default = ["std"]
24
24
futures-core-preview = { path = " ../futures-core" , version = " 0.3.0-alpha.2" , default-features = false }
25
25
futures-util-preview = { path = " ../futures-util" , version = " 0.3.0-alpha.2" , default-features = false }
26
26
futures-channel-preview = { path = " ../futures-channel" , version = " 0.3.0-alpha.2" , default-features = false }
27
- num_cpus = { version = " 1.0" , optional = true }
27
+ num_cpus = { version = " 1.8. 0" , optional = true }
28
28
lazy_static = { version = " 1.1.0" , optional = true }
29
29
pin-utils = " 0.1.0-alpha.1"
30
30
You can’t perform that action at this time.
0 commit comments