[package]
edition = "2021"
rust-version = "1.77"
name = "omnilua"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Every Lua, everywhere — pure-Rust Lua 5.1–5.5, suite-passing, LuaRocks-compatible, wasm-ready."
homepage = "https://github.com/ianm199/omnilua"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ianm199/omnilua"
[features]
derive = ["dep:lua-rs-derive"]
[lib]
name = "omnilua"
path = "src/lib.rs"
[[example]]
name = "scope_delegate_macro"
path = "examples/scope_delegate_macro.rs"
required-features = ["derive"]
[[example]]
name = "scope_world"
path = "examples/scope_world.rs"
[[test]]
name = "dump_kit"
path = "tests/dump_kit.rs"
[[test]]
name = "error_wording_kit"
path = "tests/error_wording_kit.rs"
[[test]]
name = "large_table"
path = "tests/large_table.rs"
[[test]]
name = "multiversion_53"
path = "tests/multiversion_53.rs"
[[test]]
name = "multiversion_55"
path = "tests/multiversion_55.rs"
[[test]]
name = "multiversion_oracle"
path = "tests/multiversion_oracle.rs"
[[test]]
name = "panic_hook_chaining"
path = "tests/panic_hook_chaining.rs"
[[test]]
name = "runtime_sandbox"
path = "tests/runtime_sandbox.rs"
[[test]]
name = "sandbox"
path = "tests/sandbox.rs"
[[test]]
name = "scope_delegate"
path = "tests/scope_delegate.rs"
[[test]]
name = "scope_error_rooting"
path = "tests/scope_error_rooting.rs"
[[test]]
name = "scope_with_derive"
path = "tests/scope_with_derive.rs"
[[test]]
name = "scope_world_smoke"
path = "tests/scope_world_smoke.rs"
[dependencies.lua-gc]
version = "0.3.2"
[dependencies.lua-parse]
version = "0.3.2"
[dependencies.lua-rs-derive]
version = "0.3.2"
optional = true
[dependencies.lua-stdlib]
version = "0.3.2"
[dependencies.lua-types]
version = "0.3.2"
[dependencies.lua-vm]
version = "0.3.2"
[lints.rust]
unsafe_code = "allow"