[package]
edition = "2021"
rust-version = "1.77"
name = "mlua-flow-ir"
version = "0.1.1"
authors = ["Yutaka Nishimura <ytk.nishimura@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "flow.ir async runtime + mlua binding — re-exports flow-ir-core (Pure Rust sync core) and adds AsyncDispatcher + eval_async + Lua module"
homepage = "https://github.com/ynishi/mlua-flow-ir"
documentation = "https://docs.rs/mlua-flow-ir"
readme = "README.md"
keywords = [
"flow",
"ir",
"mlua",
"lua",
"async",
]
categories = [
"data-structures",
"asynchronous",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/mlua-flow-ir"
[lib]
name = "mlua_flow_ir"
path = "src/lib.rs"
[[test]]
name = "async_integration"
path = "tests/async_integration.rs"
[[test]]
name = "dynamic_injection"
path = "tests/dynamic_injection.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "lua_bridge"
path = "tests/lua_bridge.rs"
[dependencies.async-recursion]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.flow-ir-core]
version = "0.1.1"
[dependencies.futures]
version = "0.3"
[dependencies.mlua]
version = "0.11"
features = [
"lua54",
"vendored",
"serde",
]
[dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"test-util",
"macros",
"rt",
"rt-multi-thread",
"time",
]