[package]
edition = "2021"
rust-version = "1.75"
name = "fsm-guards"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fuel-metered JSONLogic guard evaluation with per-call custom operators — forked from jsonlogic-rs"
readme = "README.md"
keywords = [
"jsonlogic",
"fsm",
"guard",
"rules",
"workflow",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/fastyoke/fsm-guards"
[lib]
name = "fsm_guards"
path = "src/lib.rs"
[[example]]
name = "basic_guard"
path = "examples/basic_guard.rs"
[[example]]
name = "custom_operators"
path = "examples/custom_operators.rs"
[[example]]
name = "fuel_limits"
path = "examples/fuel_limits.rs"
[[test]]
name = "ctx"
path = "tests/ctx.rs"
[[test]]
name = "engine_smoke"
path = "tests/engine_smoke.rs"
[[test]]
name = "error_display"
path = "tests/error_display.rs"
[[test]]
name = "fuel_accounting"
path = "tests/fuel_accounting.rs"
[[test]]
name = "guards"
path = "tests/guards.rs"
[[test]]
name = "jsonlogic_spec"
path = "tests/jsonlogic_spec.rs"
[dependencies.serde_json]
version = "1"