aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-executor/src/lib.rs')
-rw-r--r--embassy-executor/src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/embassy-executor/src/lib.rs b/embassy-executor/src/lib.rs
index 3ce687eb6..ca67c9484 100644
--- a/embassy-executor/src/lib.rs
+++ b/embassy-executor/src/lib.rs
@@ -37,6 +37,11 @@ pub use arch::*;
37 37
38pub mod raw; 38pub mod raw;
39 39
40#[cfg(feature = "executor-interrupt")]
41pub mod interrupt;
42#[cfg(feature = "executor-thread")]
43pub mod thread;
44
40mod spawner; 45mod spawner;
41pub use spawner::*; 46pub use spawner::*;
42 47