[package]
edition = "2021"
rust-version = "1.77"
name = "mlua-isle"
version = "0.3.0"
authors = ["Yutaka Nishimura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Thread-isolated Lua VM with cancellation and async bridge for mlua"
homepage = "https://github.com/ynishi/mlua-isle"
readme = "README.md"
keywords = [
"lua",
"mlua",
"thread",
"cancellation",
"async",
]
categories = [
"concurrency",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/mlua-isle"
[features]
default = []
tokio = ["dep:tokio"]
[lib]
name = "mlua_isle"
path = "src/lib.rs"
[[test]]
name = "async_integration"
path = "tests/async_integration.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.mlua]
version = "0.11"
features = [
"lua54",
"vendored",
]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
]
optional = true
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]