File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 10
10
)
11
11
) ) ]
12
12
#![ warn( missing_docs, unsafe_op_in_unsafe_fn) ]
13
- #![ cfg_attr( feature = "write-all-vectored" , feature ( io_slice_advance ) ) ]
13
+ #![ cfg_attr( feature = "write-all-vectored" ) ]
14
14
#![ cfg_attr( docsrs, feature( doc_cfg) ) ]
15
15
#![ allow( clippy:: needless_borrow) ] // https://github.com/rust-lang/futures-rs/pull/2558#issuecomment-1030745203
16
16
#![ allow( clippy:: arc_with_non_send_sync) ] // false positive https://github.com/rust-lang/rust-clippy/issues/11076
Original file line number Diff line number Diff line change @@ -127,12 +127,11 @@ pub use self::futures_unordered::FuturesUnordered;
127
127
#[ cfg_attr( target_os = "none" , cfg( target_has_atomic = "ptr" ) ) ]
128
128
#[ cfg( feature = "alloc" ) ]
129
129
pub mod mapped_futures;
130
- #[ cfg( not( futures_no_atomic_cas) ) ]
131
130
#[ cfg( feature = "alloc" ) ]
132
131
#[ doc( inline) ]
133
132
pub use self :: mapped_futures:: MappedFutures ;
134
133
135
- #[ cfg( not ( futures_no_atomic_cas ) ) ]
134
+ #[ cfg_attr ( target_os = "none" , cfg( target_has_atomic = "ptr" ) ) ]
136
135
#[ cfg( feature = "alloc" ) ]
137
136
pub mod select_all;
138
137
#[ cfg_attr( target_os = "none" , cfg( target_has_atomic = "ptr" ) ) ]
You can’t perform that action at this time.
0 commit comments