This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -190,3 +190,23 @@ pub struct Params {
190
190
job : Option < Job >
191
191
}
192
192
}
193
+
194
+ // #2969
195
+ #[ cfg( not( all( feature="std" ,
196
+ any( target_os = "linux" , target_os = "android" ,
197
+ target_os = "netbsd" ,
198
+ target_os = "dragonfly" ,
199
+ target_os = "haiku" ,
200
+ target_os = "emscripten" ,
201
+ target_os = "solaris" ,
202
+ target_os = "cloudabi" ,
203
+ target_os = "macos" , target_os = "ios" ,
204
+ target_os = "freebsd" ,
205
+ target_os = "openbsd" , target_os = "bitrig" ,
206
+ target_os = "redox" ,
207
+ target_os = "fuchsia" ,
208
+ windows,
209
+ all( target_arch = "wasm32" , feature = "stdweb" ) ,
210
+ all( target_arch = "wasm32" , feature = "wasm-bindgen" ) ,
211
+ ) ) ) ) ]
212
+ type Os = NoSource ;
Original file line number Diff line number Diff line change @@ -219,3 +219,29 @@ mod issue_2620 {
219
219
job : Option < Job > ,
220
220
}
221
221
}
222
+
223
+ // #2969
224
+ #[ cfg( not( all(
225
+ feature = "std" ,
226
+ any(
227
+ target_os = "linux" ,
228
+ target_os = "android" ,
229
+ target_os = "netbsd" ,
230
+ target_os = "dragonfly" ,
231
+ target_os = "haiku" ,
232
+ target_os = "emscripten" ,
233
+ target_os = "solaris" ,
234
+ target_os = "cloudabi" ,
235
+ target_os = "macos" ,
236
+ target_os = "ios" ,
237
+ target_os = "freebsd" ,
238
+ target_os = "openbsd" ,
239
+ target_os = "bitrig" ,
240
+ target_os = "redox" ,
241
+ target_os = "fuchsia" ,
242
+ windows,
243
+ all( target_arch = "wasm32" , feature = "stdweb" ) ,
244
+ all( target_arch = "wasm32" , feature = "wasm-bindgen" ) ,
245
+ )
246
+ ) ) ) ]
247
+ type Os = NoSource ;
You can’t perform that action at this time.
0 commit comments