[package]
edition = "2021"
name = "luaur-rt"
version = "0.1.1"
authors = ["Pawel Jankiewicz <p.jankiewicz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe, ergonomic, mlua-style API for luaur (pure-Rust Luau)."
readme = false
keywords = [
"luau",
"lua",
"mlua",
"scripting",
"embedding",
]
categories = [
"api-bindings",
"development-tools::ffi",
"game-development",
]
license = "MIT"
repository = "https://github.com/pjankiewicz/luaur"
[features]
async = ["dep:futures-util"]
macros = ["dep:luaur-rt-derive"]
send = []
serde = ["dep:serde"]
typecheck = [
"dep:luaur-analysis",
"dep:luaur-config",
]
[lib]
name = "luaur_rt"
path = "src/lib.rs"
[[test]]
name = "luaur_typecheck"
path = "tests/luaur_typecheck.rs"
[[test]]
name = "mlua_async"
path = "tests/mlua_async.rs"
[[test]]
name = "mlua_buffer"
path = "tests/mlua_buffer.rs"
[[test]]
name = "mlua_byte_string"
path = "tests/mlua_byte_string.rs"
[[test]]
name = "mlua_chunk"
path = "tests/mlua_chunk.rs"
[[test]]
name = "mlua_compile"
path = "tests/mlua_compile.rs"
[[test]]
name = "mlua_conversion"
path = "tests/mlua_conversion.rs"
[[test]]
name = "mlua_core"
path = "tests/mlua_core.rs"
[[test]]
name = "mlua_debug"
path = "tests/mlua_debug.rs"
[[test]]
name = "mlua_error"
path = "tests/mlua_error.rs"
[[test]]
name = "mlua_function"
path = "tests/mlua_function.rs"
[[test]]
name = "mlua_hooks"
path = "tests/mlua_hooks.rs"
[[test]]
name = "mlua_luau"
path = "tests/mlua_luau.rs"
[[test]]
name = "mlua_memory"
path = "tests/mlua_memory.rs"
[[test]]
name = "mlua_multi"
path = "tests/mlua_multi.rs"
[[test]]
name = "mlua_scope"
path = "tests/mlua_scope.rs"
[[test]]
name = "mlua_send"
path = "tests/mlua_send.rs"
[[test]]
name = "mlua_send_async"
path = "tests/mlua_send_async.rs"
[[test]]
name = "mlua_serde"
path = "tests/mlua_serde.rs"
[[test]]
name = "mlua_string"
path = "tests/mlua_string.rs"
[[test]]
name = "mlua_table"
path = "tests/mlua_table.rs"
[[test]]
name = "mlua_thread"
path = "tests/mlua_thread.rs"
[[test]]
name = "mlua_types"
path = "tests/mlua_types.rs"
[[test]]
name = "mlua_userdata"
path = "tests/mlua_userdata.rs"
[[test]]
name = "mlua_userdata_macro"
path = "tests/mlua_userdata_macro.rs"
[[test]]
name = "mlua_value"
path = "tests/mlua_value.rs"
[dependencies.futures-util]
version = "0.3"
optional = true
[dependencies.luaur-analysis]
version = "0.1.1"
optional = true
[dependencies.luaur-ast]
version = "0.1.1"
[dependencies.luaur-bytecode]
version = "0.1.1"
[dependencies.luaur-common]
version = "0.1.1"
[dependencies.luaur-compiler]
version = "0.1.1"
[dependencies.luaur-config]
version = "0.1.1"
optional = true
[dependencies.luaur-rt-derive]
version = "0.1.1"
optional = true
[dependencies.luaur-vm]
version = "0.1.1"
[dependencies.serde]
version = "1.0"
features = ["std"]
optional = true
default-features = false
[dev-dependencies.bstr]
version = "1"
features = ["serde"]
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.serde]
version = "1.0"
features = [
"std",
"derive",
]
[dev-dependencies.serde_json]
version = "1.0"
features = ["arbitrary_precision"]
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"time",
"sync",
]