From e267a1922d70db257b1e75d5af37c6109d3c6970 Mon Sep 17 00:00:00 2001 From: Alexander Polakov Date: Thu, 20 Sep 2018 00:46:13 +0300 Subject: [PATCH] Reexport TaskExecutor from tokio_current_thread (#652) --- src/runtime/current_thread/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime/current_thread/mod.rs b/src/runtime/current_thread/mod.rs index 57a934c0b..dca41711e 100644 --- a/src/runtime/current_thread/mod.rs +++ b/src/runtime/current_thread/mod.rs @@ -72,6 +72,7 @@ mod runtime; pub use self::builder::Builder; pub use self::runtime::{Runtime, Handle}; pub use tokio_current_thread::spawn; +pub use tokio_current_thread::TaskExecutor; use futures::Future;