lustre-executor 0.2.0

A blazingly fast, minimal async executor with pluggable ID generation and I/O support.
Documentation
//! # 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 mod core;
pub mod io;
pub mod prelude;

pub use core::*;
pub use io::*;
pub use prelude::*;