@@ -112,11 +112,16 @@ mod standalone
112112 pub mod collection;
113113 pub use collection as collection_tools;
114114
115- /// impl index macroc .
115+ /// impl and index macros .
116116 #[ path = "../../../../core/impls_index/src/impls_index/mod.rs" ]
117117 pub mod impls_index;
118118
119+ /// Memory tools.
120+ #[ path = "../../../../core/mem_tools/src/mem.rs" ]
121+ pub mod mem_tools;
122+
119123}
124+
120125#[ cfg( feature = "enabled" ) ]
121126#[ cfg( feature = "standalone" ) ]
122127pub use standalone:: * ;
@@ -128,12 +133,12 @@ pub use ::
128133 error_tools,
129134 collection_tools,
130135 impls_index,
136+ mem_tools,
131137} ;
132138
133139#[ cfg( feature = "enabled" ) ]
134140pub use ::
135141{
136- mem_tools,
137142 typing_tools,
138143 diagnostics_tools,
139144 process_tools,
@@ -162,7 +167,7 @@ pub mod own
162167 {
163168 error_tools:: orphan:: * ,
164169 collection_tools:: orphan:: * ,
165- // meta_tools ::orphan::*,
170+ impls_index :: orphan:: * ,
166171 mem_tools:: orphan:: * ,
167172 typing_tools:: orphan:: * ,
168173 diagnostics_tools:: orphan:: * ,
@@ -203,7 +208,7 @@ pub mod exposed
203208 {
204209 error_tools:: exposed:: * ,
205210 collection_tools:: exposed:: * ,
206- // meta_tools ::exposed::*,
211+ impls_index :: exposed:: * ,
207212 mem_tools:: exposed:: * ,
208213 typing_tools:: exposed:: * ,
209214 diagnostics_tools:: exposed:: * ,
@@ -226,7 +231,7 @@ pub mod prelude
226231 {
227232 error_tools:: prelude:: * ,
228233 collection_tools:: prelude:: * ,
229- // meta_tools ::prelude::*,
234+ impls_index :: prelude:: * ,
230235 mem_tools:: prelude:: * ,
231236 typing_tools:: prelude:: * ,
232237 diagnostics_tools:: prelude:: * ,
0 commit comments