lua-bind 0.1.0

Thread-safe Lua binding system with automatic type registration and dependency injection
[dependencies.lazy_static]
version = "1.4"

[dependencies.linkme]
version = "0.2"

[dependencies.mlua]
features = ["luajit"]
version = "0.9"

[dependencies.paste]
version = "1.0"

[dependencies.reqwest]
features = ["json"]
optional = true
version = "0.11"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["rt", "rt-multi-thread", "macros"]
optional = true
version = "1.0"

[dev-dependencies.mlua]
features = ["serialize"]
version = "0.9"

[dev-dependencies.rstest]
version = "0.18"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[[example]]
name = "async"
path = "examples/async.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "serialization"
path = "examples/serialization.rs"

[features]
async = ["mlua/async"]
default = []
test-async = ["async", "reqwest", "tokio"]
vendored = ["mlua/vendored"]

[lib]
name = "lua_bind"
path = "src/lib.rs"

[package]
authors = ["mein <mein412@foxmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["external-ffi-bindings", "api-bindings", "development-tools"]
description = "Thread-safe Lua binding system with automatic type registration and dependency injection"
documentation = "https://docs.rs/lua-bind"
edition = "2021"
keywords = ["lua", "binding", "ffi", "scripting", "automation"]
license = "MIT OR Apache-2.0"
name = "lua-bind"
readme = "README.md"
repository = "https://github.com/wuslin/lua-bind"
version = "0.1.0"

[[test]]
name = "integration"
path = "tests/integration.rs"