mlua-luau-scheduler/Cargo.toml
Filip Tibell 588fc46807
Refactor runtime and callbacks
* 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
2024-01-24 19:50:25 +01:00

31 lines
428 B
TOML

[package]
name = "smol-mlua"
version = "0.0.0"
edition = "2021"
[dependencies]
smol = "2.0"
mlua = { version = "0.9", features = ["luau", "luau-jit", "async"] }
[lib]
path = "lib/lib.rs"
[[example]]
name = "basic_sleep"
test = true
[[example]]
name = "basic_spawn"
test = true
[[example]]
name = "callbacks"
test = true
[[example]]
name = "lots_of_threads"
test = true
[[example]]
name = "scheduler_ordering"
test = true