File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ use std::hash::{BuildHasherDefault, Hasher};
99use std:: marker:: PhantomData ;
1010use std:: sync:: Arc ;
1111
12+ mod future_ext;
13+
14+ pub use future_ext:: FutureExt ;
15+
16+
1217thread_local ! {
1318 static CURRENT_CONTEXT : RefCell <ContextStack > = RefCell :: new( ContextStack :: default ( ) ) ;
1419}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -246,7 +246,6 @@ pub mod global;
246246
247247pub mod baggage;
248248
249- mod context;
250249
251250pub use context:: { Context , ContextGuard } ;
252251
@@ -278,6 +277,7 @@ pub mod trace;
278277#[ cfg( feature = "logs" ) ]
279278#[ cfg_attr( docsrs, doc( cfg( feature = "logs" ) ) ) ]
280279pub mod logs;
280+ pub mod context;
281281
282282#[ doc( hidden) ]
283283#[ cfg( any( feature = "metrics" , feature = "trace" , feature = "logs" ) ) ]
You can’t perform that action at this time.
0 commit comments