//! # lustre-executor
//!
//! A blazingly fast, minimal async executor built on Mio for low-level I/O.
//! Features pluggable ID generation, modular design, and support for custom futures.
//!
//! ## Example
//! ```rust
//! use lustre_executor::prelude::*;
//!
//! let mut executor = Executor::new().unwrap();
//! executor.spawn(Task::new(async {
//! // Your async code here
//! }));
//! executor.run();
//! ```
pub use *;
pub use *;
pub use *;