File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 22
22
23
23
- script : cargo install cargo-hack
24
24
displayName : Install cargo-hack
25
- # FIXME(taiki-e): many features of current cargo-hack are not available on windows: https://github.com/taiki-e/cargo-hack/issues/3
26
- condition : not(eq(variables['Agent.OS'], 'Windows_NT'))
27
25
28
26
- template : azure-is-release.yml
29
27
53
51
CI : ' True'
54
52
displayName : ${{ crate }} - cargo hack check --each-feature
55
53
workingDirectory : $(Build.SourcesDirectory)/${{ crate }}
56
- # FIXME(taiki-e): many features of current cargo-hack are not available on windows: https://github.com/taiki-e/cargo-hack/issues/3
57
- condition : not(eq(variables['Agent.OS'], 'Windows_NT'))
58
54
59
55
- template : azure-patch-crates.yml
60
56
84
80
CI : ' True'
85
81
displayName : ${{ crate }} - cargo hack check --each-feature
86
82
workingDirectory : $(Build.SourcesDirectory)/${{ crate }}
87
- # FIXME(taiki-e): many features of current cargo-hack are not available on windows: https://github.com/taiki-e/cargo-hack/issues/3
88
- condition : not(eq(variables['Agent.OS'], 'Windows_NT'))
Original file line number Diff line number Diff line change @@ -45,6 +45,10 @@ cfg_not_sync! {
45
45
cfg_signal! {
46
46
pub ( crate ) mod mpsc;
47
47
pub ( crate ) mod semaphore;
48
+
49
+ cfg_not_rt_threaded! {
50
+ pub ( crate ) mod oneshot;
51
+ }
48
52
}
49
53
}
50
54
You can’t perform that action at this time.
0 commit comments