[package] name = "mlua-luau-runtime" version = "0.0.0" edition = "2021" license = "MPL-2.0" repository = "https://github.com/lune-org/mlua-luau-runtime" description = "Luau-based async runtime, using mlua and async-executor" readme = "README.md" keywords = ["async", "luau", "runtime"] categories = ["async"] [dependencies] async-executor = "1.8" blocking = "1.5" concurrent-queue = "2.4" derive_more = "0.99" event-listener = "4.0" futures-lite = "2.2" rustc-hash = "1.1" tracing = "0.1" mlua = { git = "https://github.com/mlua-rs/mlua.git", rev = "1754226c7440ec6c194d2d678ec083b621d46ceb", features = [ "luau", "luau-jit", "async", "serialize", ] } [dev-dependencies] async-fs = "2.1" async-io = "2.3" tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-tracy = "0.11" [lints.clippy] all = { level = "deny", priority = -3 } cargo = { level = "warn", priority = -2 } pedantic = { level = "warn", priority = -1 } [lib] path = "lib/lib.rs" [[example]] name = "basic_sleep" test = true [[example]] name = "basic_spawn" test = true [[example]] name = "callbacks" test = true [[example]] name = "exit_code" test = true [[example]] name = "lots_of_threads" test = true [[example]] name = "scheduler_ordering" test = true [[example]] name = "tracy" test = false