task/lib.rs
1#![no_std]
2
3extern crate alloc;
4
5#[cfg(any(test, feature = "std"))]
6extern crate std;
7
8mod environment_variable;
9mod error;
10mod join_handle;
11mod manager;
12mod signal;
13mod task;
14
15pub use environment_variable::*;
16pub use error::*;
17pub use futures;
18pub use join_handle::*;
19pub use manager::*;
20pub use signal::*;
21pub use task::*;
22pub use task_macros::{run, test};
23
24pub use embassy_executor;