[package]
edition = "2021"
rust-version = "1.77"
name = "mlua-swarm-dsl"
version = "0.24.0"
authors = ["Yutaka Nishimura <ytk.nishimura@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lua authoring DSL (flow_dsl + bp_dsl) for mlua-swarm Blueprint / flow.ir JSON. Embeds the Lua source and executes .bp.lua scripts in a fresh mlua VM, returning serde_json::Value ready to feed into mlua-swarm-compile."
homepage = "https://github.com/ynishi/mlua-swarm"
readme = "README.md"
keywords = [
"swarm",
"lua",
"dsl",
"blueprint",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/mlua-swarm"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "mlua_swarm_dsl"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.mlua]
version = "0.11"
features = [
"lua54",
"vendored",
"serde",
]
[dependencies.serde_json]
version = "1"