embedded_executor/
alloc_executor.rs

1//! Dynamic `alloc`-backed executor
2//!
3
4// Note: using an "inner" crate to avoid obvious "pub use ..." stuff in the docs.
5
6pub(crate) mod inner;
7
8pub use self::inner::*;