mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-04 10:30:56 +01:00
* Improved ergonomics and flexibility for crate consumers * Simplified callback mechanism for errors * Factor out runtime thread queues into proper structs * Misc performance improvements - approx 20% faster scheduler
8 lines
139 B
Rust
8 lines
139 B
Rust
mod error_callback;
|
|
mod queue;
|
|
mod runtime;
|
|
mod traits;
|
|
mod util;
|
|
|
|
pub use runtime::Runtime;
|
|
pub use traits::{IntoLuaThread, LuaSpawnExt};
|