From 379dca552ca91d22ee007b42f93803ad3dc2b274 Mon Sep 17 00:00:00 2001 From: hozan23 Date: Wed, 20 Mar 2024 15:20:21 +0100 Subject: core: add the option to create a new task group without providing an executor & remove GlobalExecutor type --- core/src/async_util/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/src/async_util/mod.rs') diff --git a/core/src/async_util/mod.rs b/core/src/async_util/mod.rs index c871bad..2916118 100644 --- a/core/src/async_util/mod.rs +++ b/core/src/async_util/mod.rs @@ -1,6 +1,7 @@ mod backoff; mod condvar; mod condwait; +mod executor; mod select; mod task_group; mod timeout; @@ -8,6 +9,7 @@ mod timeout; pub use backoff::Backoff; pub use condvar::CondVar; pub use condwait::CondWait; +pub use executor::Executor; pub use select::{select, Either}; pub use task_group::{TaskGroup, TaskResult}; pub use timeout::timeout; -- cgit v1.2.3