@@ -34,43 +34,43 @@ matrix:
34
34
- name : cargo build --no-default-features
35
35
rust : nightly
36
36
script :
37
- - cargo build --manifest-path futures/Cargo.toml --no-default-features
38
- - cargo build --manifest-path futures-core/Cargo.toml --no-default-features
39
- - cargo build --manifest-path futures-channel/Cargo.toml --no-default-features
40
- - cargo build --manifest-path futures-executor/Cargo.toml --no-default-features
41
- - cargo build --manifest-path futures-io/Cargo.toml --no-default-features
42
- - cargo build --manifest-path futures-sink/Cargo.toml --no-default-features
43
- - cargo build --manifest-path futures-util/Cargo.toml --no-default-features
37
+ - cargo build -p futures-preview --no-default-features
38
+ - cargo build -p futures-core-preview --no-default-features
39
+ - cargo build -p futures-channel-preview --no-default-features
40
+ - cargo build -p futures-executor-preview --no-default-features
41
+ - cargo build -p futures-io-preview --no-default-features
42
+ - cargo build -p futures-sink-preview --no-default-features
43
+ - cargo build -p futures-util-preview --no-default-features
44
44
45
45
- name : cargo build --all-features
46
46
rust : nightly
47
47
script :
48
- - cargo build --manifest-path futures/Cargo.toml --all-features
49
- - cargo build --manifest-path futures-core/Cargo.toml --all-features
50
- - cargo build --manifest-path futures-channel/Cargo.toml --all-features
51
- - cargo build --manifest-path futures-executor/Cargo.toml --all-features
52
- - cargo build --manifest-path futures-io/Cargo.toml --all-features
53
- - cargo build --manifest-path futures-sink/Cargo.toml --all-features
54
- - cargo build --manifest-path futures-util/Cargo.toml --all-features
48
+ - cargo build -p futures-preview --all-features
49
+ - cargo build -p futures-core-preview --all-features
50
+ - cargo build -p futures-channel-preview --all-features
51
+ - cargo build -p futures-executor-preview --all-features
52
+ - cargo build -p futures-io-preview --all-features
53
+ - cargo build -p futures-sink-preview --all-features
54
+ - cargo build -p futures-util-preview --all-features
55
55
56
56
- name : cargo build --all-features (with minimal versions)
57
57
rust : nightly
58
58
script :
59
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
60
+ - cargo build -p futures-preview --all-features
61
+ - cargo build -p futures-core-preview --all-features
62
+ - cargo build -p futures-channel-preview --all-features
63
+ - cargo build -p futures-executor-preview --all-features
64
+ - cargo build -p futures-io-preview --all-features
65
+ - cargo build -p futures-sink-preview --all-features
66
+ - cargo build -p futures-util-preview --all-features
67
67
68
68
- name : cargo build --target=thumbv6m-none-eabi
69
69
rust : nightly
70
70
install :
71
71
- rustup target add thumbv6m-none-eabi
72
72
script :
73
- - cargo build --manifest-path futures/Cargo.toml
73
+ - cargo build -p futures-preview
74
74
--target thumbv6m-none-eabi
75
75
--no-default-features
76
76
--features nightly
0 commit comments