@@ -933,7 +933,7 @@ pub trait StreamExt: Stream {
933933 /// fut.await;
934934 /// # })
935935 /// ```
936- #[ cfg( not( no_atomic_cas ) ) ]
936+ #[ cfg( not( futures_no_atomic_cas ) ) ]
937937 #[ cfg( feature = "alloc" ) ]
938938 fn for_each_concurrent < Fut , F > (
939939 self ,
@@ -1066,7 +1066,7 @@ pub trait StreamExt: Stream {
10661066 /// assert_eq!(Err(oneshot::Canceled), fut.await);
10671067 /// # })
10681068 /// ```
1069- #[ cfg( not( no_atomic_cas ) ) ]
1069+ #[ cfg( not( futures_no_atomic_cas ) ) ]
10701070 #[ cfg( feature = "alloc" ) ]
10711071 fn try_for_each_concurrent < Fut , F , E > (
10721072 self ,
@@ -1293,7 +1293,7 @@ pub trait StreamExt: Stream {
12931293 /// # Panics
12941294 ///
12951295 /// This method will panic if `n` is zero.
1296- #[ cfg( not( no_atomic_cas ) ) ]
1296+ #[ cfg( not( futures_no_atomic_cas ) ) ]
12971297 #[ cfg( feature = "alloc" ) ]
12981298 fn buffered ( self , n : usize ) -> Buffered < Self >
12991299 where
@@ -1342,7 +1342,7 @@ pub trait StreamExt: Stream {
13421342 /// assert_eq!(buffered.next().await, None);
13431343 /// # Ok::<(), i32>(()) }).unwrap();
13441344 /// ```
1345- #[ cfg( not( no_atomic_cas ) ) ]
1345+ #[ cfg( not( futures_no_atomic_cas ) ) ]
13461346 #[ cfg( feature = "alloc" ) ]
13471347 fn buffer_unordered ( self , n : usize ) -> BufferUnordered < Self >
13481348 where
@@ -1509,7 +1509,7 @@ pub trait StreamExt: Stream {
15091509 /// library is activated, and it is activated by default.
15101510 #[ cfg( feature = "sink" ) ]
15111511 #[ cfg_attr( docsrs, doc( cfg( feature = "sink" ) ) ) ]
1512- #[ cfg( not( no_atomic_cas ) ) ]
1512+ #[ cfg( not( futures_no_atomic_cas ) ) ]
15131513 #[ cfg( feature = "alloc" ) ]
15141514 fn split < Item > ( self ) -> ( SplitSink < Self , Item > , SplitStream < Self > )
15151515 where
0 commit comments