@@ -933,7 +933,7 @@ pub trait StreamExt: Stream {
933
933
/// fut.await;
934
934
/// # })
935
935
/// ```
936
- #[ cfg( not( no_atomic_cas ) ) ]
936
+ #[ cfg( not( futures_no_atomic_cas ) ) ]
937
937
#[ cfg( feature = "alloc" ) ]
938
938
fn for_each_concurrent < Fut , F > (
939
939
self ,
@@ -1066,7 +1066,7 @@ pub trait StreamExt: Stream {
1066
1066
/// assert_eq!(Err(oneshot::Canceled), fut.await);
1067
1067
/// # })
1068
1068
/// ```
1069
- #[ cfg( not( no_atomic_cas ) ) ]
1069
+ #[ cfg( not( futures_no_atomic_cas ) ) ]
1070
1070
#[ cfg( feature = "alloc" ) ]
1071
1071
fn try_for_each_concurrent < Fut , F , E > (
1072
1072
self ,
@@ -1293,7 +1293,7 @@ pub trait StreamExt: Stream {
1293
1293
/// # Panics
1294
1294
///
1295
1295
/// This method will panic if `n` is zero.
1296
- #[ cfg( not( no_atomic_cas ) ) ]
1296
+ #[ cfg( not( futures_no_atomic_cas ) ) ]
1297
1297
#[ cfg( feature = "alloc" ) ]
1298
1298
fn buffered ( self , n : usize ) -> Buffered < Self >
1299
1299
where
@@ -1342,7 +1342,7 @@ pub trait StreamExt: Stream {
1342
1342
/// assert_eq!(buffered.next().await, None);
1343
1343
/// # Ok::<(), i32>(()) }).unwrap();
1344
1344
/// ```
1345
- #[ cfg( not( no_atomic_cas ) ) ]
1345
+ #[ cfg( not( futures_no_atomic_cas ) ) ]
1346
1346
#[ cfg( feature = "alloc" ) ]
1347
1347
fn buffer_unordered ( self , n : usize ) -> BufferUnordered < Self >
1348
1348
where
@@ -1509,7 +1509,7 @@ pub trait StreamExt: Stream {
1509
1509
/// library is activated, and it is activated by default.
1510
1510
#[ cfg( feature = "sink" ) ]
1511
1511
#[ cfg_attr( docsrs, doc( cfg( feature = "sink" ) ) ) ]
1512
- #[ cfg( not( no_atomic_cas ) ) ]
1512
+ #[ cfg( not( futures_no_atomic_cas ) ) ]
1513
1513
#[ cfg( feature = "alloc" ) ]
1514
1514
fn split < Item > ( self ) -> ( SplitSink < Self , Item > , SplitStream < Self > )
1515
1515
where
0 commit comments