2121
2222#![ allow( unused_imports) ]
2323
24- #[ cfg( feature = "std " ) ]
24+ #[ cfg( feature = "alloc " ) ]
2525use crate :: queue:: ArcBBQueue ;
2626#[ cfg( target_has_atomic = "ptr" ) ]
2727use crate :: traits:: coordination:: cas:: AtomicCoord ;
2828#[ cfg( feature = "critical-section" ) ]
2929use crate :: traits:: coordination:: cs:: CsCoord ;
30- #[ cfg( feature = "std " ) ]
30+ #[ cfg( feature = "alloc " ) ]
3131use crate :: traits:: storage:: BoxedSlice ;
3232use crate :: {
3333 queue:: BBQueue ,
@@ -51,49 +51,49 @@ pub type Churrasco<const N: usize> = BBQueue<Inline<N>, AtomicCoord, Blocking>;
5151pub type Texas < const N : usize , A > = BBQueue < Inline < N > , AtomicCoord , A > ;
5252
5353/// Heap Buffer, Critical Section, Blocking, Borrowed
54- #[ cfg( all( feature = "std " , feature = "critical-section" ) ) ]
54+ #[ cfg( all( feature = "alloc " , feature = "critical-section" ) ) ]
5555pub type Braai = BBQueue < BoxedSlice , CsCoord , Blocking > ;
5656
5757/// Heap Buffer, Critical Section, Async, Borrowed
58- #[ cfg( all( feature = "std " , feature = "critical-section" ) ) ]
58+ #[ cfg( all( feature = "alloc " , feature = "critical-section" ) ) ]
5959pub type SiuMei < A > = BBQueue < BoxedSlice , CsCoord , A > ;
6060
6161/// Heap Buffer, Atomics, Blocking, Borrowed
62- #[ cfg( all( feature = "std " , target_has_atomic = "ptr" ) ) ]
62+ #[ cfg( all( feature = "alloc " , target_has_atomic = "ptr" ) ) ]
6363pub type YakiNiku = BBQueue < BoxedSlice , AtomicCoord , Blocking > ;
6464
6565/// Heap Buffer, Atomics, Async, Borrowed
66- #[ cfg( all( feature = "std " , target_has_atomic = "ptr" ) ) ]
66+ #[ cfg( all( feature = "alloc " , target_has_atomic = "ptr" ) ) ]
6767pub type Tandoori < A > = BBQueue < BoxedSlice , AtomicCoord , A > ;
6868
6969/// Inline Storage, Critical Section, Blocking, Arc
70- #[ cfg( all( feature = "std " , feature = "critical-section" ) ) ]
70+ #[ cfg( all( feature = "alloc " , feature = "critical-section" ) ) ]
7171pub type Asado < const N : usize > = ArcBBQueue < Inline < N > , CsCoord , Blocking > ;
7272
7373/// Inline Storage, Critical Section, Async, Arc
74- #[ cfg( all( feature = "std " , feature = "critical-section" ) ) ]
74+ #[ cfg( all( feature = "alloc " , feature = "critical-section" ) ) ]
7575pub type Carolina < const N : usize , A > = ArcBBQueue < Inline < N > , CsCoord , A > ;
7676
7777/// Inline Storage, Atomics, Blocking, Arc
78- #[ cfg( all( feature = "std " , target_has_atomic = "ptr" ) ) ]
78+ #[ cfg( all( feature = "alloc " , target_has_atomic = "ptr" ) ) ]
7979pub type Barbacoa < const N : usize > = ArcBBQueue < Inline < N > , AtomicCoord , Blocking > ;
8080
8181/// Inline Storage, Atomics, Async, Arc
82- #[ cfg( all( feature = "std " , target_has_atomic = "ptr" ) ) ]
82+ #[ cfg( all( feature = "alloc " , target_has_atomic = "ptr" ) ) ]
8383pub type KansasCity < const N : usize , A > = ArcBBQueue < Inline < N > , AtomicCoord , A > ;
8484
8585/// Heap Buffer, Critical Section, Blocking, Arc
86- #[ cfg( all( feature = "std " , feature = "critical-section" ) ) ]
86+ #[ cfg( all( feature = "alloc " , feature = "critical-section" ) ) ]
8787pub type Kebab = ArcBBQueue < BoxedSlice , CsCoord , Blocking > ;
8888
8989/// Heap Buffer, Critical Section, Async, Arc
90- #[ cfg( all( feature = "std " , feature = "critical-section" ) ) ]
90+ #[ cfg( all( feature = "alloc " , feature = "critical-section" ) ) ]
9191pub type Satay < A > = ArcBBQueue < BoxedSlice , CsCoord , A > ;
9292
9393/// Heap Buffer, Atomics, Blocking, Arc
94- #[ cfg( all( feature = "std " , target_has_atomic = "ptr" ) ) ]
94+ #[ cfg( all( feature = "alloc " , target_has_atomic = "ptr" ) ) ]
9595pub type GogiGui = ArcBBQueue < BoxedSlice , AtomicCoord , Blocking > ;
9696
9797/// Heap Buffer, Atomics, Async, Arc
98- #[ cfg( all( feature = "std " , target_has_atomic = "ptr" ) ) ]
98+ #[ cfg( all( feature = "alloc " , target_has_atomic = "ptr" ) ) ]
9999pub type Lechon < A > = ArcBBQueue < BoxedSlice , AtomicCoord , A > ;
0 commit comments