[package]
edition = "2021"
rust-version = "1.77"
name = "flow-ir-core"
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 Pure Rust schema + sync interpreter — Node / Expr / Dispatcher / eval (no mlua, no async)"
homepage = "https://github.com/ynishi/mlua-flow-ir"
documentation = "https://docs.rs/flow-ir-core"
readme = "README.md"
keywords = [
"flow",
"ir",
"interpreter",
"dsl",
"dispatcher",
]
categories = [
"data-structures",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/mlua-flow-ir"
[lib]
name = "flow_ir_core"
path = "src/lib.rs"
[[test]]
name = "expr_ops"
path = "tests/expr_ops.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"